Step 1: Define DML Commands.
DML (Data Manipulation Language) commands are used to manipulate and manage data in relational databases. These commands allow users to insert, update, and delete data from tables.
Step 2: Explain the DML commands. (1) INSERT:
The INSERT command is used to add new rows of data to a table. For example:
\[
\text{INSERT INTO students (id, name, age) VALUES (1, 'John', 20);}
\]
(2) UPDATE:
The UPDATE command is used to modify existing data in a table. For example:
\[
\text{UPDATE students SET age = 21 WHERE id = 1;}
\]