Categorize the following commands as DDL or DML:
INSERT, UPDATE, ALTER, DROP
Answer:
DDL - ALTER, DROP
DML - INSERT, UPDATE
Explanation:
DDL stands for Data Definition Language and DDL commands are used to create and modify the structure of a database and database objects.
DML stands for Data Manipulation Language and DML commands deal with the manipulation of data present in the database.