Question:medium

Which of the following is not a DDL command in SQL?

Show Hint

Remember, DDL commands deal with the structure of the database (e.g., CREATE}, DROP}), while DML commands (e.g., UPDATE}, INSERT}) handle the data within the tables.
Updated On: Jan 13, 2026
  • DROP
     

  • CREATE
     

  • UPDATE
     

  • ALTER
     

Show Solution

The Correct Option is C

Solution and Explanation

The UPDATE command is a Data Manipulation Language (DML) instruction for altering data within existing table rows. Conversely, DROP, CREATE, and ALTER are Data Definition Language (DDL) instructions, employed for defining and modifying database structures.

Was this answer helpful?
0