Categories of SQL Commands: DML, TCL, DDL
The correct answer is 'B. All of them'.
SQL commands are categorized into three main groups:
- Data Manipulation Language (DML): Used for manipulating data within tables, including inserting, updating, and deleting records. Examples include
INSERT,UPDATE, andDELETE. - Transaction Control Language (TCL): Used to manage transactions within a database, ensuring data consistency and integrity. Examples include
COMMIT,ROLLBACK, andSAVEPOINT. - Data Definition Language (DDL): Used to define the structure of the database, including creating, altering, and dropping tables, indexes, and views. Examples include
CREATE,ALTER, andDROP.
原文地址: https://www.cveoy.top/t/topic/nxci 著作权归作者所有。请勿转载和采集!