Oracle DDL | DDL | Data Definition Language - oracle tutorial - sql tutorial
What is Data Definition Language (DDL) in oracle ?
- Data Definition Language (DDL) statements are used to define the database structure or schema.
- The schema to perform these functions are,
CREATE:
- It is used to create tables in the database.
Learn oracle - oracle tutorial - Oracle create table with normal - oracle examples - oracle programs
ALTER :
- It is used to alters the structure of the database
Learn oracle - oracle tutorial - Oracle alter table - oracle examples - oracle programs
DROP :
- It is used to delete the INDEX,TABLE and DATABASES in Drop Statement.
Learn oracle - oracle tutorial - Oracle drop table - oracle examples - oracle programs
oracle tutorial , sql tutorial , sql , pl sql tutorial , oracle , pl sql , plsql
TRUNCATE :
- It is used to remove all records from a table.
- Including all spaces allocated for the records are removed.
Learn oracle - oracle tutorial - Oracle truncate table - oracle examples - oracle programs
COMMENT :
- It is uses to add comments to the data dictionary
RENAME:
- It used to rename the table from old name to new name.
Learn oracle - oracle tutorial - Oracle alter table rename column - oracle examples - oracle programs