Home  >  Article  >  Database  >  What is wrong with the statements about sql statements?

What is wrong with the statements about sql statements?

藏色散人
藏色散人Original
2020-04-30 10:17:589481browse

What is wrong with the statements about sql statements?

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!

Statement:
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
Previous article:Usage of listagg functionNext article:Usage of listagg function