|
DDL: Data Definition Language
DDL command are used to define database structure and components.
CREATE : to create database objects
ALTER : alters database object structure
DROP : delete objects from the database
TRUNCATE : removes all data rows from a table. Truncate commend cannot be ROLLBACK.
COMMENT : add comments to the data dictionary .
RENAME : rename an object.
|