|
DML : Data Manipulation Language
DML are used to manage data from database objects.
SELECT : retrieve set of records from one or more database objects
INSERT : add a row into a table
UPDATE : updates record(s) within a table
DELETE : delete row(s) from a table.
MERGE : perform conditional UPDATE or INSERT commands.
CALL : invocation of a PL/SQL or Java subprogram
|