SQL DML

DML (Data Manipulation Language) is used to manipulate or modify the data stored in database tables. It does not change the structure of the table, only the data inside the table.

Main DML Commands
1. INSERT – Adds new records to a table
2. UPDATE – Modifies existing records
3. DELETE – Removes records from a table
4. SELECT – Retrieves data from a table

DML is a part of Structured Query Language (SQL) used to manage and manipulate data stored in database tables.


Topics