Oracle Statements - DDL, DML, DCL, TCL
DDL
Data Definition Language (DDL)
statements are used to define the database structure or schema. Some examples:
1 | CREATE - to create objects in the database |
DML
Data Manipulation Language (DML)
statements are used for managing data within schema objects. Some examples:
1 | SELECT - retrieve data from the a database |
DCL
Data Control Language (DCL)
Some examples:
1 | GRANT - gives user's access privileges to database |
TCL
Transaction Control (TCL)
statements are used to manage the changes made by DML statements. It allows statements to be grouped together into logical transactions.
1 | COMMIT - save work done |
Author: itabas016
Link: https://tech.itabas.com/2016/09/03/database/oracle-statements/
License: CC BY-NC-ND 4.0