Question:

Which of the following command is DML command?

Show Hint

DML commands allow for modifying the data itself in a database, while DDL commands deal with the structure of the database.
Updated On: Apr 24, 2025
  • Delete
  • Drop
  • Alter
  • Create
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

DML (Data Manipulation Language) commands are used to manipulate data in a database. The common DML commands include:
- SELECT for querying data.
- INSERT for adding data.
- UPDATE for modifying data.
- DELETE for removing data.
Commands like DROP, ALTER, and CREATE are DDL (Data Definition Language) commands, not DML. Thus, the correct DML command in the options is DELETE.
Was this answer helpful?
0
0