Multiple choice technology databases

CREATE,ALTER,DROP and TRUNCATE comes under?

  1. DML

  2. DDL

  3. DRL

  4. DCL

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

CREATE, ALTER, DROP, and TRUNCATE are DDL (Data Definition Language) commands that define or modify database structure. CREATE makes new objects, ALTER changes structure, DROP removes objects, and TRUNCATE empties a table while keeping its structure. These commands work on the schema, not the data itself.