Computer Science

Which of the following is/are the DDL statements ?

  1. Create
  2. Drop
  3. Alter
  4. All of these

DDL & DML

2 Likes

Answer

All of these

Reason — DDL (Data Definition Language) commands are used to create and define tables and other database objects in SQL (Structured Query Language). DDL commands such as CREATE, ALTER, and DROP, are used to create, define, change and delete objects like tables, indexes, views, and constraints.

Answered By

3 Likes


Related Questions