Difference between revisions of "CREATE a new table"
From SQLZOO
| Line 1: | Line 1: | ||
CREATE a new table | CREATE a new table | ||
<div class='ht'> | <div class='ht'> | ||
| − | <div class=params>schema: | + | <div class=params>schema:scott</div> |
<div> | <div> | ||
The following are examples of field types: | The following are examples of field types: | ||
Latest revision as of 09:42, 16 July 2012
CREATE a new table
schema:scott
The following are examples of field types:
| INTEGER | A whole number |
| VARCHAR(10) | Up to 10 characters. |
| CHAR(10) | Fixed number of characters |
| DATE | A date |
| TIMESTAMP | Date and time |
| FLOAT | Floating point numbers |
DROP TABLE t_test
CREATE TABLE t_test (a INTEGER NOT NULL PRIMARY KEY ,b VARCHAR(10) )
CREATE TABLE t_test (a INTEGER PRIMARY KEY ,b VARCHAR2(10) )
CREATE TABLE t_test (a INTEGER PRIMARY KEY ,b VARCHAR(10) )
CREATE a new table