__________ command is used to delete the records and _________ command is used to delete the db objects?
Answer options
A
DELETE, TRUNCATE
B
TRUNCATE, DROP
C
DROP, DELETE
D
DELETE, DROP
Correct answer: DELETE, TRUNCATE
Explanation
DELETE removes records (DML); TRUNCATE removes all rows and resets table (DDL).