Home > Database > Mysql Tutorial > body text

What operations cannot be performed in Datasheet view

藏色散人
Release: 2019-06-18 10:01:21
Original
26271 people have browsed it

What operations cannot be performed in Datasheet view

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!