|
What is DDL and DML (Data Definition/Manipulation Language)
DDL (Data Definition Language) is used to design and define the database schema. Best example for DDL is Oracle as it includes commands like CREATE, DROP, ALTER, etc.
DML (Data Manipulation Language) is used for accessing and manipulating data in the database. It is organized as the initial word in a statement referred as a verb like - select", "insert", "update", and "delete".
|