Database Fundamentals — Question 104
Which of the following are DML commands? Each correct answer represents a complete solution. (Choose all that apply.)
Answer options
- A. SELECT INTO
- B. DELETE
- C. UPDATE
- D. ALTER
- E. SELECT
- F. INSERT
Correct answer: A, B, C, F
Explanation
DML (Data Manipulation Language) commands are used to manage data within schema objects. The correct answers - SELECT INTO, DELETE, UPDATE, and INSERT - are all involved in data handling. ALTER is a DDL (Data Definition Language) command and does not manipulate data itself, while SELECT is primarily for data retrieval and not considered a DML command.