What is DML (Data Manipulation Language)?
2867
22-Sep-2014
Updated on 01-May-2023
Aryan Kumar
28-Apr-2023In SQL (Structured Query Language), Data Manipulation Language (DML) is a subset of SQL statements used to manipulate data in a database. DML commands are used to add, modify, delete, and retrieve data from a database table.
The most common DML commands in SQL are:
Here's a brief explanation of each DML command:
In summary, DML commands are used to manipulate data in a database table. They allow you to add, modify, delete, and retrieve data from a table.
Sumit Kesarwani
22-Sep-2014This language that enable user to access or manipulate data as organised by appropriate data model.
Procedural DML or Low level: DML requires a user to specify what data are needed and how to get those data.
Non-Procedural DML or High level: DML requires a user to specify what data are needed without specifying how to get those data.