What is Data Manipulation Language(DML)?



Suraj Said

+0 -0

Data Manipulation Language (DML) is a subset of SQL (Structured Query Language) that is used to manipulate data in a relational database. DML includes a set of commands for performing operations such as inserting, updating, and deleting data in database tables.
Some common DML commands include:
SELECT: used to retrieve data from one or more tables in a database.
INSERT: used to insert new data into a table.
UPDATE: used to modify existing data in a table.
DELETE: used to delete data from a table.
MERGE: used to merge data from multiple tables into a single table.
REPLACE: used to insert new data into a table or update existing data.



Submit Your Response