MySQL What Is DDL, DML and DCL
MySQL What Is DDL, DML and DCL
SQL commands are divided into four subgroups, DDL, DML, DCL, and TCL.
DML
DML is short name of Data Manipulation Language which deals with data manipulation and
includes most common SQL statements such SELECT, INSERT, UPDATE, DELETE, etc., and it is
used to store, modify, retrieve, delete and update data in a database.
DCL
DCL is short name of Data Control Language which includes commands such as GRANT and
mostly concerned with rights, permissions and other controls of the database system.
TCL
TCL is short name of Transaction Control Language which deals with a transaction within a
database.