1998-09-11
-CREATE [TEMP] TABLE table (
+CREATE [ TEMP ] TABLE table (
column type
[ NULL | NOT NULL ] [ UNIQUE ] [ DEFAULT value ]
[column_constraint_clause | PRIMARY KEY } [ ... ] ]
Inputs
+
+
TEMP
- The table is created unique to this session, and is
+ The table is created only for this session, and is
automatically dropped on session exit.
+ Existing permanent tables with the same name are not visible
+ while the temporary table exists.
-
table