 |
Oracle SQL & PL/SQL: CREATE TABLE
CREATE TABLE Creates a new table. Example 1 of Create Table CREATE TABLE Table_One(name char(30)); Table named 'Table_One' is created with just one column 'name'. Example 2 of Create Table CREATE TABLE Sells (Food_Court CHAR(20), Food CHAR ...
sql-plsql.blogspot.com |
 |