Oracle DML Statements

DML (Data manipulation language) statements access and manipulate data in existing tables.
Changes made by DML statements do not remain permanently in the database if commit is not used.

Insert Statement – inserts rows into an existing table.

Update Statement – changes the values of a set of existing table rows.

Delete Statement – deletes rows from a table.