DDL (Data definition language) defines our database structure. CREATE and ALTER are DDL statements as they affect the way our database structure is organized.
DML (Data Manipulation Language) lets we do basic functionalities like INSERT, UPDATE, DELETE and MODIFY data in database.
DCL (Data Control Language) controls you DML and DDL statements so that your data is protected and has consistency. COMITT and ROLLBACK are DCL control statements. DCL guarantees ACID fundamentals of a transaction.
answered
1 year ago
by anonymous