Which of the following are Data manipulation language commands(DML)?
-
Select
-
Insert
-
Update
-
Create
-
Delete
-
Alter
A,B,C,E
Correct answer
Explanation
DML (Data Manipulation Language) commands operate on existing data within database objects. SELECT retrieves data, INSERT adds new rows, UPDATE modifies existing data, and DELETE removes rows. CREATE and ALTER are DDL (Data Definition Language) commands that define or modify database structures, not manipulate data.