Which category of SQL commands does the INSERT statement belong to?
2026
Which category of SQL commands does the INSERT statement belong to?
- A.
DDL (Data Definition Language)
- B.
DCL (Data Control Language)
- C.
DML (Data Manipulation Language)
- D.
TCL (Transaction Control Language)
Attempted by 641 students.
Show answer & explanation
Correct answer: C
The INSERT statement is used to add new rows of data into a table. This operation modifies the data within the database, which classifies it under Data Manipulation Language (DML). DML commands include INSERT, UPDATE, DELETE, and SELECT.