InterviewSolution
Saved Bookmarks
| 1. |
What is DDL, DML and DCL in MySQL? |
|
Answer» 1. DDL In MySQL, DDL is the short FORM for Data Definition Language, which is used in DATABASE schemas and descriptions while deciding how data should RESIDE in the database. Here’s a list of DDL Queries:
DML is a short form for Data Manipulation Language which is used in data manipulation and mostly includes common SQL statements to store, modify, retrieve, delete and update data in a database. Here is the list of DML Queries:
DCL is a short form for Data Control Language including commands which are concerned with User rights, permissions and other controls within the database system. Here’s a list of queries for DCL:
|
|