Multiple choice technology databases

INSERT, UPDATE, DELETE SQL commands fall into which category of SQL statements?

  1. DDL

  2. DML

  3. DCL

  4. TCL

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Data Manipulation Language (DML) commands directly manipulate data within database objects. INSERT adds new rows, UPDATE modifies existing data, and DELETE removes rows, all operations on the data itself rather than structure. DML operations can be rolled back as part of transaction management.