What is wrong with the statements about sql statements?
A. The INSERT statement can append new data records to the data table
B. The UPDATE statement is used to modify existing data records in the data table
C. The DELETE statement is used to delete records in the data table
D. The CREATE statement is used to create a table structure and append new records
Regarding the sql statement, the error is "The CREATE statement is used to create a table structure and append new records." Select D.
The function of the CREATE statement is to create a table structure, but it cannot append new records. You can use the INSERT statement to append new records.
Recommended mysql video tutorial, address: https://www.php.cn/course/list/51.html
The above is the detailed content of What is wrong with the statements about sql statements?. For more information, please follow other related articles on the PHP Chinese website!