CREATE OPERATOR
- Defines a new user operator.
+ Defines a new user operator
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
--->
\ No newline at end of file
+-->
CREATE SEQUENCE
- creates a new sequence number generator.
+ Creates a new sequence number generator
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
--->
\ No newline at end of file
+-->
CREATE TABLE
- Creates a new table.
+ Creates a new table
SQL92
- In addition to normal CREATE TABLE, SQL92 also supports a
- CREATE TEMPORARY TABLE statement.
+ In addition to normal CREATE TABLE, SQL92 also defines a
+ CREATE TEMPORARY TABLE statement:
CREATE [ {GLOBAL | LOCAL} ] TEMPORARY TABLE table (
) ON COMMIT DELETE ROWS
- TIP: In the current release of PostgreSQL (6.3.2), to create a temporary
+Temporary tables are not currently available in
Postgres.
+ TIP: In the current release of
Postgres (v6.3.2), to create a temporary
table you must create and drop the table by explicit commands.
SQL92 specifies some additional capabilities for UNIQUE:
Table Constraint definition
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
--->
\ No newline at end of file
+-->
CREATE TRIGGER
- CREATE TRIGGER - creates a new trigger.
+ Creates a new trigger
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
--->
\ No newline at end of file
+-->
CREATE TYPE
- CREATE TYPE - defines a new base data type.
+ Defines a new base data type
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
--->
\ No newline at end of file
+-->