🎴 Flashcard Mode
Oracle Database Fundamentals and SQL
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Which are DML statements? (Choose all that apply.)
AnswerClick to flip back
A
MERGE
B
UPDATE
C
DELETE
💡 Explanation:
DML (Data Manipulation Language) statements manipulate data: MERGE combines insert/update operations, UPDATE modifies existing rows, and DELETE removes rows. COMMIT is a transaction control statement (TCL). CREATE and DROP are DDL (Data Definition Language) statements that define schema structures, not manipulate data.