Multiple choice technology databases

Identify SQL statement which is used for Data Manipulation. Choose all that apply.

  1. Insert

  2. Create

  3. Delete

  4. Select

  5. Merge

  6. Update

Reveal answer Fill a bubble to check yourself
A,C,E,F Correct answer
Explanation

Data Manipulation Language (DML) statements modify data: Insert adds new rows, Delete removes rows, Merge combines insert/update/delete operations, and Update modifies existing data. Create is DDL (defines structure), Select is for retrieval not manipulation.