diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 7c407d630b..c4f5ea138c 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ @@ -817,7 +817,7 @@ CREATE TABLE distributors ( Compatibility - The CREATE TABLE conforms to SQL92 Intermediate + The CREATE TABLE command conforms to SQL92 and to a subset of SQL99, with exceptions listed below and in the descriptions above. @@ -834,6 +834,8 @@ CREATE TABLE distributors ( PostgreSQL does not have modules, and requires each session to issue its own CREATE TEMPORARY TABLE command for each temporary table to be used. + The notion of GLOBAL temporary tables found in SQL92 + is not in PostgreSQL at all. @@ -845,7 +847,7 @@ CREATE TABLE distributors ( - The optional ON COMMIT clause for temporary tables + The ON COMMIT clause for temporary tables also resembles SQL92, but has some differences. If the ON COMMIT clause is omitted, SQL92 specifies that the default behavior is ON COMMIT DELETE ROWS. However, the