Which of the following is DDL Statement
-
Truncate
-
Merge
-
Revoke
-
Grant
A
Correct answer
Explanation
TRUNCATE is a DDL (Data Definition Language) operation because it removes all rows and resets storage, performing an implicit commit that cannot be rolled back. MERGE is DML (combines INSERT/UPDATE/DELETE). REVOKE and GRANT are DCL (Data Control Language) statements for permissions.