Data Manipulation Language (DML) is the syntax elements similar to a computer programming language used for selecting, inserting, deleting and updating data in a database.
INSERT INTO table_name
VALUES (value 1, ... value n);
UPDATE table_name
SET attribute = expression
WHERE condition;
DELETE FROM table_name
WHERE condition;