Dbms Language
Dbms Language
Dbms Language
DML stands for Data Manipulation Language.It is used for accessing and manipulating data in a
database.
It allows user insert, delete, update, and retrieve data from the database. Dml is also known as
query language
o Select: It is used to retrieve data from a database.
o Insert: It is used to insert data into a table.
o Update: It is used to update existing data within a table.
o Delete: It is used to delete all records from a table.
INSERT INTO Employees (EmployeeID, EmployeeName, Role)