Multiple choice technology programming languages

Which of the following are Data manipulation language commands(DML)?

  1. Select

  2. Insert

  3. Update

  4. Create

  5. Delete

  6. Alter

Reveal answer Fill a bubble to check yourself
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.