What operations cannot be performed in Datasheet view?
The operation that cannot be performed in the datasheet view is modifying the type of the field.
In the "Data Table" view, you can edit, add, delete fields, delete records, and search for data. However, the table structure established using the "Data Table" view only describes the fields in the table. name, but does not specify the data type and attribute value of each field, and cannot be modified.
Related introduction:
A view is a virtual table derived from one or several basic tables (or views). Only the definition of the view is stored in the system's data dictionary, and the data corresponding to the view is not stored.
A view is a transformation of the original database data and another way to view the data in the table. You can think of a view as a moving window through which you can see the data of interest. Views are obtained from one or more actual tables whose data is stored in the database. The tables used to generate a view are called the base tables of the view. A view can also be generated from another view.
The definition of the view exists in the database, and the data related to this definition is not stored in the database. The data seen through the view is stored in the base table.
The view looks very much like a physical table in the database, and its operations are the same as any other table. When you modify data through a view, you are actually changing the data in the base table; conversely, changes in the base table data will automatically be reflected in the views generated by the base table. For logical reasons, some views can modify the corresponding base table, while others cannot (only query).
Related recommendations: "mysql tutorial"
The above is the detailed content of What operations cannot be performed in Datasheet view. For more information, please follow other related articles on the PHP Chinese website!