Minor markup changes for the recent TEMP TABLE info.
authorThomas G. Lockhart
Sat, 13 Feb 1999 03:33:50 +0000 (03:33 +0000)
committerThomas G. Lockhart
Sat, 13 Feb 1999 03:33:50 +0000 (03:33 +0000)
Docs should build now...

doc/src/sgml/ref/create_table.sgml

index acf0603ab853b8b54da3d1fa84d891de0538ae73..96f2f58f399e8801c84336a2ae00e9e9e48652fb 100644 (file)
@@ -18,7 +18,7 @@
    1998-09-11
   
   
-CREATE [TEMP] TABLE table (
+CREATE [ TEMP ] TABLE table (
     column type
     [ NULL | NOT NULL ] [ UNIQUE ] [ DEFAULT value ]
     [column_constraint_clause | PRIMARY KEY } [ ... ] ]
@@ -36,21 +36,24 @@ CREATE [TEMP] TABLE table (
    </div> <div class="diff ctx">     Inputs</div> <div class="diff ctx">    
+
    
    
+   
     
      
      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