Difference between revisions of "Oracle:Data Definition Language"
From mi-linux
Jump to navigationJump to search(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
This section looks at how tables can be created, altered or dropped: | This section looks at how tables can be created, altered or dropped: | ||
* [[Oracle:DDL_Create|Creating a table]] | * [[Oracle:DDL_Create|Creating a table]] | ||
+ | ** [[Oracle:DDL_Create#Composite Keys|Composite Keys]] | ||
+ | **[[Oracle:DDL_Create#Sequences|Creating a Sequence]] | ||
+ | **[[Oracle:DDL_Create#Identity|Identity Columns]] | ||
+ | **[[Oracle:DDL_Create#CTAS|Create Table AS...]] | ||
* [[Oracle:DDL_Drop|Dropping a table]] | * [[Oracle:DDL_Drop|Dropping a table]] | ||
* [[Oracle:DDL_Alter|Altering a table]] | * [[Oracle:DDL_Alter|Altering a table]] | ||
+ | ** [[Oracle:DDL_Alter#Alter Column|Altering a column]] | ||
+ | ** [[Oracle:DDL_Alter#Adding Column|Adding a column]] | ||
+ | ** [[Oracle:DDL_Alter#Delete Column|Deleting a column]] | ||
Latest revision as of 17:19, 23 June 2016
Main Page >> Oracle and SQL >> Workbook >> DDL
Data Definition Language Commands (DDL)
This section looks at how tables can be created, altered or dropped:
Return to the Workbook.