Write the names of any two DDL commands.
Answers
Answered by
1
DDL is Data Definition Language which is used to define data structures. For example: create table, alter table are instructions in SQL. DML: DML is Data Manipulation Language which is used to manipulate data itself. For example: insert, update, delete are instructions in SQL.
Answered by
0
Answer:
Examples of DDL commands:
CREATE
– is used to create the database or its objects (like table, index, function, views, store procedure and triggers).
DROP
– is used to delete objects from the database.
Similar questions