Difference between revisions of "Oracle:Data Definition Language"
From mi-linux
Jump to navigationJump to search (Created page with "== Data Definition Language Commands (DDL) == This section looks at how tables can be created. === Creating a Table === The code that produced the sample database can be se...") |
|||
(21 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Main Page]] >> [[Oracle|Oracle and SQL]] >> [[Oracle_Workbook|Workbook]] >> DDL | ||
+ | |||
== Data Definition Language Commands (DDL) == | == Data Definition Language Commands (DDL) == | ||
− | This section looks at how tables can be created | + | This section looks at how tables can be created, altered or dropped: |
− | + | * [[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_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]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | * | ||
− | * | ||
− | * | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | ---- | |
− | + | Return to the [[Oracle_Workbook|Workbook]]. | |
− | |||
− | |||
− | |||
− | |||
− |
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.