Make placeholders in SQL command help more consistent and precise
authorPeter Eisentraut
Thu, 21 Jun 2012 22:06:14 +0000 (01:06 +0300)
committerPeter Eisentraut
Thu, 21 Jun 2012 22:06:14 +0000 (01:06 +0300)
To avoid divergent names on related pages, avoid ambiguities, and
reduce translation work a little.

30 files changed:
doc/src/sgml/ref/alter_aggregate.sgml
doc/src/sgml/ref/alter_extension.sgml
doc/src/sgml/ref/alter_foreign_table.sgml
doc/src/sgml/ref/alter_sequence.sgml
doc/src/sgml/ref/alter_server.sgml
doc/src/sgml/ref/alter_table.sgml
doc/src/sgml/ref/alter_trigger.sgml
doc/src/sgml/ref/alter_view.sgml
doc/src/sgml/ref/analyze.sgml
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/create_database.sgml
doc/src/sgml/ref/create_extension.sgml
doc/src/sgml/ref/create_index.sgml
doc/src/sgml/ref/create_rule.sgml
doc/src/sgml/ref/create_sequence.sgml
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table_as.sgml
doc/src/sgml/ref/create_trigger.sgml
doc/src/sgml/ref/delete.sgml
doc/src/sgml/ref/drop_aggregate.sgml
doc/src/sgml/ref/drop_extension.sgml
doc/src/sgml/ref/drop_rule.sgml
doc/src/sgml/ref/drop_server.sgml
doc/src/sgml/ref/drop_tablespace.sgml
doc/src/sgml/ref/drop_trigger.sgml
doc/src/sgml/ref/grant.sgml
doc/src/sgml/ref/insert.sgml
doc/src/sgml/ref/revoke.sgml
doc/src/sgml/ref/update.sgml
doc/src/sgml/ref/vacuum.sgml

index 26c5dc017566676131f66e52cc40d86b211915a6..571a50a502ec0b47261ea51d92d4d2a15534eb84 100644 (file)
@@ -21,9 +21,9 @@ PostgreSQL documentation
 
  
 
-ALTER AGGREGATE name ( type [ , ... ] ) RENAME TO new_name
-ALTER AGGREGATE name ( type [ , ... ] ) OWNER TO new_owner
-ALTER AGGREGATE name ( type [ , ... ] ) SET SCHEMA new_schema
+ALTER AGGREGATE name ( argtype [ , ... ] ) RENAME TO new_name
+ALTER AGGREGATE name ( argtype [ , ... ] ) OWNER TO new_owner
+ALTER AGGREGATE name ( argtype [ , ... ] ) SET SCHEMA new_schema
 
  
 
@@ -62,7 +62,7 @@ ALTER AGGREGATE name ( type
    
 
    
-    type
+    argtype
     
      
       An input data type on which the aggregate function operates.
index cbe5043fef5b377dc3c6bc3ecbeab9cb2e9b88b7..6916da3f9d8c1d97f1f8b613cf416c0ef667ebb8 100644 (file)
@@ -23,10 +23,10 @@ PostgreSQL documentation
 
  
 
-ALTER EXTENSION extension_name UPDATE [ TO new_version ]
-ALTER EXTENSION extension_name SET SCHEMA new_schema
-ALTER EXTENSION extension_name ADD member_object
-ALTER EXTENSION extension_name DROP member_object
+ALTER EXTENSION name UPDATE [ TO new_version ]
+ALTER EXTENSION name SET SCHEMA new_schema
+ALTER EXTENSION name ADD member_object
+ALTER EXTENSION name DROP member_object
 
 where member_object is:
 
@@ -126,7 +126,7 @@ ALTER EXTENSION extension_name DROP
   
    
     
-     extension_name
+     name
      
       
        The name of an installed extension.
index c3f33a50aecd2db9df11f3154876729898c060f6..f0b3129ab090a285700a6f2750c990e40b5d4018 100644 (file)
@@ -24,7 +24,7 @@ PostgreSQL documentation
 ALTER FOREIGN TABLE [ IF EXISTS ] name
     action [, ... ]
 ALTER FOREIGN TABLE [ IF EXISTS ] name
-    RENAME [ COLUMN ] column TO new_column
+    RENAME [ COLUMN ] column_name TO new_column_name
 ALTER FOREIGN TABLE [ IF EXISTS ] name
     RENAME TO new_name
 ALTER FOREIGN TABLE [ IF EXISTS ] name
@@ -32,14 +32,14 @@ ALTER FOREIGN TABLE [ IF EXISTS ] name
 
 where action is one of:
 
-    ADD [ COLUMN ] column type [ NULL | NOT NULL ]
-    DROP [ COLUMN ] [ IF EXISTS ] column [ RESTRICT | CASCADE ]
-    ALTER [ COLUMN ] column [ SET DATA ] TYPE type
-    ALTER [ COLUMN ] column { SET | DROP } NOT NULL
-    ALTER [ COLUMN ] column SET STATISTICS integer
-    ALTER [ COLUMN ] column SET ( attribute_option = value [, ... ] )
-    ALTER [ COLUMN ] column RESET ( attribute_option [, ... ] )
-    ALTER [ COLUMN ] column OPTIONS ( [ ADD | SET | DROP ] option ['value'] [, ... ])
+    ADD [ COLUMN ] column_name data_type [ NULL | NOT NULL ]
+    DROP [ COLUMN ] [ IF EXISTS ] column_name [ RESTRICT | CASCADE ]
+    ALTER [ COLUMN ] column_name [ SET DATA ] TYPE data_type
+    ALTER [ COLUMN ] column_name { SET | DROP } NOT NULL
+    ALTER [ COLUMN ] column_name SET STATISTICS integer
+    ALTER [ COLUMN ] column_name SET ( attribute_option = value [, ... ] )
+    ALTER [ COLUMN ] column_name RESET ( attribute_option [, ... ] )
+    ALTER [ COLUMN ] column_name OPTIONS ( [ ADD | SET | DROP ] option ['value'] [, ... ])
     OWNER TO new_owner
     OPTIONS ( [ ADD | SET | DROP ] option ['value'] [, ... ])
 
@@ -216,7 +216,7 @@ ALTER FOREIGN TABLE [ IF EXISTS ] name
      
 
      
-      column
+      column_name
       
        
         Name of a new or existing column.
@@ -225,7 +225,7 @@ ALTER FOREIGN TABLE [ IF EXISTS ] name
      
 
      
-      new_column
+      new_column_name
       
        
         New name for an existing column.
@@ -243,7 +243,7 @@ ALTER FOREIGN TABLE [ IF EXISTS ] name
      
 
      
-      type
+      data_type
       
        
         Data type of the new column, or new data type for an existing
index 6ddd461fe93f2734302812bce0ceebb2999d82c3..204ca11f0bae7afa12c93f87e0ae57337982154e 100644 (file)
@@ -28,7 +28,7 @@ ALTER SEQUENCE [ IF EXISTS ] name [
     [ START [ WITH ] start ]
     [ RESTART [ [ WITH ] restart ] ]
     [ CACHE cache ] [ [ NO ] CYCLE ]
-    [ OWNED BY { table.column | NONE } ]
+    [ OWNED BY { table_name.column_name | NONE } ]
 ALTER SEQUENCE [ IF EXISTS ] name OWNER TO new_owner
 ALTER SEQUENCE [ IF EXISTS ] name RENAME TO new_name
 ALTER SEQUENCE [ IF EXISTS ] name SET SCHEMA new_schema
@@ -203,7 +203,7 @@ ALTER SEQUENCE [ IF EXISTS ] name S
      
 
    
-    OWNED BY table.column
+    OWNED BY table_name.column_name
     OWNED BY NONE
     
      
index 248efd91630584c5e605aae14f1ad4bd6431ee22..08afde1dd0490d63e74089361464ea1dc286bdf0 100644 (file)
@@ -21,10 +21,10 @@ PostgreSQL documentation
 
  
 
-ALTER SERVER server_name [ VERSION 'new_version' ]
+ALTER SERVER name [ VERSION 'new_version' ]
     [ OPTIONS ( [ ADD | SET | DROP ] option ['value'] [, ... ] ) ]
-ALTER SERVER server_name OWNER TO new_owner
-ALTER SERVER server_name RENAME TO new_name
+ALTER SERVER name OWNER TO new_owner
+ALTER SERVER name RENAME TO new_name
 
  
 
@@ -53,7 +53,7 @@ ALTER SERVER server_name RENAME TO
 
   
    
-    server_name
+    name
     
      
       The name of an existing server.
index 04e3e54172cd57d0dd4a5c4b9967f7e961e014e0..3f61d7d45fe457858924c8c03ac0b2103877609e 100644 (file)
@@ -24,7 +24,7 @@ PostgreSQL documentation
 ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ]
     action [, ... ]
 ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ]
-    RENAME [ COLUMN ] column TO new_column
+    RENAME [ COLUMN ] column_name TO new_column_name
 ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ]
     RENAME CONSTRAINT constraint_name TO new_constraint_name
 ALTER TABLE [ IF EXISTS ] name
@@ -34,16 +34,16 @@ ALTER TABLE [ IF EXISTS ] name
 
 where action is one of:
 
-    ADD [ COLUMN ] column data_type [ COLLATE collation ] [ column_constraint [ ... ] ]
-    DROP [ COLUMN ] [ IF EXISTS ] column [ RESTRICT | CASCADE ]
-    ALTER [ COLUMN ] column [ SET DATA ] TYPE data_type [ COLLATE collation ] [ USING expression ]
-    ALTER [ COLUMN ] column SET DEFAULT expression
-    ALTER [ COLUMN ] column DROP DEFAULT
-    ALTER [ COLUMN ] column { SET | DROP } NOT NULL
-    ALTER [ COLUMN ] column SET STATISTICS integer
-    ALTER [ COLUMN ] column SET ( attribute_option = value [, ... ] )
-    ALTER [ COLUMN ] column RESET ( attribute_option [, ... ] )
-    ALTER [ COLUMN ] column SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
+    ADD [ COLUMN ] column_name data_type [ COLLATE collation ] [ column_constraint [ ... ] ]
+    DROP [ COLUMN ] [ IF EXISTS ] column_name [ RESTRICT | CASCADE ]
+    ALTER [ COLUMN ] column_name [ SET DATA ] TYPE data_type [ COLLATE collation ] [ USING expression ]
+    ALTER [ COLUMN ] column_name SET DEFAULT expression
+    ALTER [ COLUMN ] column_name DROP DEFAULT
+    ALTER [ COLUMN ] column_name { SET | DROP } NOT NULL
+    ALTER [ COLUMN ] column_name SET STATISTICS integer
+    ALTER [ COLUMN ] column_name SET ( attribute_option = value [, ... ] )
+    ALTER [ COLUMN ] column_name RESET ( attribute_option [, ... ] )
+    ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
     ADD table_constraint [ NOT VALID ]
     ADD table_constraint_using_index
     VALIDATE CONSTRAINT constraint_name
@@ -634,7 +634,7 @@ ALTER TABLE [ IF EXISTS ] name
      
 
      
-      column
+      column_name
       
        
         Name of a new or existing column.
@@ -643,7 +643,7 @@ ALTER TABLE [ IF EXISTS ] name
      
 
      
-      new_column
+      new_column_name
       
        
         New name for an existing column.
index 90c2e3d141f31442c7a9aa734d3d51ec31929df5..0d70167024ab37bd3cd39de80dd005345dbd96ea 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-ALTER TRIGGER name ON table RENAME TO new_name
+ALTER TRIGGER name ON table_name RENAME TO new_name
 
  
 
@@ -54,7 +54,7 @@ ALTER TRIGGER name ON 
    
 
    
-    table
+    table_name
     
      
       The name of the table on which this trigger acts.
index c518d936491f0a129ff3fc935c2a3eae2d391143..521f05b84a1c983a69defed6d1f96f7b82474756 100644 (file)
@@ -21,8 +21,8 @@ PostgreSQL documentation
 
  
 
-ALTER VIEW [ IF EXISTS ] name ALTER [ COLUMN ] column SET DEFAULT expression
-ALTER VIEW [ IF EXISTS ] name ALTER [ COLUMN ] column DROP DEFAULT
+ALTER VIEW [ IF EXISTS ] name ALTER [ COLUMN ] column_name SET DEFAULT expression
+ALTER VIEW [ IF EXISTS ] name ALTER [ COLUMN ] column_name DROP DEFAULT
 ALTER VIEW [ IF EXISTS ] name OWNER TO new_owner
 ALTER VIEW [ IF EXISTS ] name RENAME TO new_name
 ALTER VIEW [ IF EXISTS ] name SET SCHEMA new_schema
index 52b2114889d82f302197f8e7bb01b529ed9868ca..8063e3752e2e8c04a21ed4c54aee72ac8788555f 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-ANALYZE [ VERBOSE ] [ table [ ( column [, ...] ) ] ]
+ANALYZE [ VERBOSE ] [ table_name [ ( column_name [, ...] ) ] ]
 
  
 
@@ -59,7 +59,7 @@ ANALYZE [ VERBOSE ] [ table [ ( 
    
 
    
-    table
+    table_name
     
      
       The name (possibly schema-qualified) of a specific table to
@@ -70,7 +70,7 @@ ANALYZE [ VERBOSE ] [ table [ ( 
    
 
    
-    column
+    column_name
     
      
       The name of a specific column to analyze. Defaults to all columns.
index a73b02276cb07d50f24173efed7618e5c4bfd18b..4e4e834e062f2b65328753ad1af03bed8e3a1bc8 100644 (file)
@@ -22,11 +22,11 @@ PostgreSQL documentation
 
  
 
-COPY table_name [ ( column [, ...] ) ]
+COPY table_name [ ( column_name [, ...] ) ]
     FROM { 'filename' | STDIN }
     [ [ WITH ] ( option [, ...] ) ]
 
-COPY { table_name [ ( column [, ...] ) ] | ( query ) }
+COPY { table_name [ ( column_name [, ...] ) ] | ( query ) }
     TO { 'filename' | STDOUT }
     [ [ WITH ] ( option [, ...] ) ]
 
@@ -39,8 +39,8 @@ COPY { table_name [ ( 
     HEADER [ boolean ]
     QUOTE 'quote_character'
     ESCAPE 'escape_character'
-    FORCE_QUOTE { ( column [, ...] ) | * }
-    FORCE_NOT_NULL ( column [, ...] ) |
+    FORCE_QUOTE { ( column_name [, ...] ) | * }
+    FORCE_NOT_NULL ( column_name [, ...] ) |
     ENCODING 'encoding_name'
 
  
@@ -91,7 +91,7 @@ COPY { table_name [ ( 
    
 
    
-    column
+    column_name
      
      
       An optional list of columns to be copied.  If no column list is
@@ -864,7 +864,7 @@ ZW      ZIMBABWE
    version 9.0 and is still supported:
 
 
-COPY table_name [ ( column [, ...] ) ]
+COPY table_name [ ( column_name [, ...] ) ]
     FROM { 'filename' | STDIN }
     [ [ WITH ]
           [ BINARY ]
@@ -874,9 +874,9 @@ COPY table_name [ ( 
           [ CSV [ HEADER ]
                 [ QUOTE [ AS ] 'quote' ]
                 [ ESCAPE [ AS ] 'escape' ]
-                [ FORCE NOT NULL column [, ...] ] ] ]
+                [ FORCE NOT NULL column_name [, ...] ] ] ]
 
-COPY { table_name [ ( column [, ...] ) ] | ( query ) }
+COPY { table_name [ ( column_name [, ...] ) ] | ( query ) }
     TO { 'filename' | STDOUT }
     [ [ WITH ]
           [ BINARY ]
@@ -886,7 +886,7 @@ COPY { table_name [ ( 
           [ CSV [ HEADER ]
                 [ QUOTE [ AS ] 'quote' ]
                 [ ESCAPE [ AS ] 'escape' ]
-                [ FORCE QUOTE { column [, ...] | * } ] ] ]
+                [ FORCE QUOTE { column_name [, ...] | * } ] ] ]
 
 
    Note that in this syntax, BINARY and CSV are
index 4e0ed5616c4897312e8ce6bb9d6aed703928943b..91cf7018c0818a44135492ce8d03eb522422e653 100644 (file)
@@ -27,7 +27,7 @@ CREATE DATABASE name
            [ ENCODING [=] encoding ]
            [ LC_COLLATE [=] lc_collate ]
            [ LC_CTYPE [=] lc_ctype ]
-           [ TABLESPACE [=] tablespace ]
+           [ TABLESPACE [=] tablespace_name ]
            [ CONNECTION LIMIT [=] connlimit ] ]
 
  
@@ -139,7 +139,7 @@ CREATE DATABASE name
       
      
      
-      tablespace
+      tablespace_name
       
        
         The name of the tablespace that will be associated with the
index 9ec0fa2fe16be88022795f2fc6cc888cb092862a..4f3b9a5698a8296220879a1ab517558251d7ba74 100644 (file)
@@ -22,7 +22,7 @@ PostgreSQL documentation
  
 
 CREATE EXTENSION [ IF NOT EXISTS ] extension_name
-    [ WITH ] [ SCHEMA schema ]
+    [ WITH ] [ SCHEMA schema_name ]
              [ VERSION version ]
              [ FROM old_version ]
 
@@ -85,7 +85,7 @@ CREATE EXTENSION [ IF NOT EXISTS ] extension_name
      
 
      
-      schema
+      schema_name
       
        
         The name of the schema in which to install the extension's
index 99a7e205a1749eb2380f28c692e936e0b833d588..2ab6470367d07ed3f10c680dbdeaf4af26f48d0e 100644 (file)
@@ -21,10 +21,10 @@ PostgreSQL documentation
 
  
 
-CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ name ] ON table [ USING method ]
-    ( { column | ( expression ) } [ COLLATE collation ] [ opclass ] [ ASC | DESC ] [ NULLS { FIRST | LAST } ] [, ...] )
+CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ name ] ON table_name [ USING method ]
+    ( { column_name | ( expression ) } [ COLLATE collation ] [ opclass ] [ ASC | DESC ] [ NULLS { FIRST | LAST } ] [, ...] )
     [ WITH ( storage_parameter = value [, ... ] ) ]
-    [ TABLESPACE tablespace ]
+    [ TABLESPACE tablespace_name ]
     [ WHERE predicate ]
 
  
@@ -140,7 +140,7 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ name
      
 
      
-      table
+      table_name
       
        
         The name (possibly schema-qualified) of the table to be indexed.
@@ -161,7 +161,7 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ name
      
 
      
-      column
+      column_name
       
        
         The name of a column of the table.
@@ -253,7 +253,7 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ name
      
 
      
-      tablespace
+      tablespace_name
       
        
         The tablespace in which to create the index.  If not specified,
index 8bccf7f1f12746f72e548ef78c41239e32411bf1..d4c3392129035a68fdd0918c417df4b3466f5156 100644 (file)
@@ -22,7 +22,7 @@ PostgreSQL documentation
  
 
 CREATE [ OR REPLACE ] RULE name AS ON event
-    TO table [ WHERE condition ]
+    TO table_name [ WHERE condition ]
     DO [ ALSO | INSTEAD ] { NOTHING | command | ( command ; command ... ) }
 
  
@@ -125,7 +125,7 @@ CREATE [ OR REPLACE ] RULE name AS
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of the table or view the
index 367f440b6cb0f6f522c6ef711fb7e39834143c02..38d160d4acb44085068ef9c494182a2df615cd09 100644 (file)
@@ -24,7 +24,7 @@ PostgreSQL documentation
 CREATE [ TEMPORARY | TEMP ] SEQUENCE name [ INCREMENT [ BY ] increment ]
     [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
     [ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]
-    [ OWNED BY { table.column | NONE } ]
+    [ OWNED BY { table_name.column_name | NONE } ]
 
  
 
@@ -197,7 +197,7 @@ SELECT * FROM name;
    
 
    
-    OWNED BY table.column
+    OWNED BY table_name.column_name
     OWNED BY NONE
     
      
index 1d7d31287f478a60f611e4edefb882d6b648e1af..08632d317271925775ee8171513209b1f45189aa 100644 (file)
@@ -30,7 +30,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
 [ INHERITS ( parent_table [, ... ] ) ]
 [ WITH ( storage_parameter [= value] [, ... ] ) | WITH OIDS | WITHOUT OIDS ]
 [ ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP } ]
-[ TABLESPACE tablespace ]
+[ TABLESPACE tablespace_name ]
 
 CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXISTS ] table_name
     OF type_name [ (
@@ -40,7 +40,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
 ) ]
 [ WITH ( storage_parameter [= value] [, ... ] ) | WITH OIDS | WITHOUT OIDS ]
 [ ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP } ]
-[ TABLESPACE tablespace ]
+[ TABLESPACE tablespace_name ]
 
 where column_constraint is:
 
@@ -73,11 +73,11 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
 index_parameters in UNIQUEPRIMARY KEY, and EXCLUDE constraints are:
 
 [ WITH ( storage_parameter [= value] [, ... ] ) ]
-[ USING INDEX TABLESPACE tablespace ]
+[ USING INDEX TABLESPACE tablespace_name ]
 
 exclude_element in an EXCLUDE constraint is:
 
-{ column | ( expression ) } [ opclass ] [ ASC | DESC ] [ NULLS { FIRST | LAST } ]
+{ column_name | ( expression ) } [ opclass ] [ ASC | DESC ] [ NULLS { FIRST | LAST } ]
 
 
  
@@ -573,7 +573,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
    
     REFERENCES reftable [ ( refcolumn ) ] [ MATCH matchtype ] [ ON DELETE action ] [ ON UPDATE action ] (column constraint)
 
-   FOREIGN KEY ( column [, ... ] )
+   FOREIGN KEY ( column_name [, ... ] )
     REFERENCES reftable [ ( refcolumn [, ... ] ) ]
     [ MATCH matchtype ]
     [ ON DELETE action ]
@@ -825,10 +825,10 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
    
 
    
-    TABLESPACE tablespace
+    TABLESPACE tablespace_name
     
      
-      The tablespace is the name
+      The tablespace_name is the name
       of the tablespace in which the new table is to be created.
       If not specified,
        is consulted, or
@@ -838,7 +838,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
    
 
    
-    USING INDEX TABLESPACE tablespace
+    USING INDEX TABLESPACE tablespace_name
     
      
       This clause allows selection of the tablespace in which the index
index 29d161940c7a3a6c4c5f56d74c61b0091234c312..9739417a70948a07a226afcb0a071cc38c825634 100644 (file)
@@ -25,7 +25,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE 
     [ (column_name [, ...] ) ]
     [ WITH ( storage_parameter [= value] [, ... ] ) | WITH OIDS | WITHOUT OIDS ]
     [ ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP } ]
-    [ TABLESPACE tablespace ]
+    [ TABLESPACE tablespace_name ]
     AS query
     [ WITH [ NO ] DATA ]
 
@@ -184,10 +184,10 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE 
    
 
    
-    TABLESPACE tablespace
+    TABLESPACE tablespace_name
     
      
-      The tablespace is the name
+      The tablespace_name is the name
       of the tablespace in which the new table is to be created.
       If not specified,
        is consulted, or
index aed07a9dfb35966cca2070f36adca5e915a45995..0f87b1fc96d3971b070b4fbda8ee1c752614bb88 100644 (file)
@@ -22,7 +22,7 @@ PostgreSQL documentation
  
 
 CREATE [ CONSTRAINT ] TRIGGER name { BEFORE | AFTER | INSTEAD OF } { event [ OR ... ] }
-    ON table
+    ON table_name
     [ FROM referenced_table_name ]
     { NOT DEFERRABLE | [ DEFERRABLE ] { INITIALLY IMMEDIATE | INITIALLY DEFERRED } }
     [ FOR [ EACH ] { ROW | STATEMENT } ]
@@ -241,7 +241,7 @@ UPDATE OF column_name1 [, column_name2
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of the table or view the trigger
index 6366b158118772359b9f5be0d5c1b82b9e13f0ee..2a9841d706cb884259722e266d2855128a9781b5 100644 (file)
@@ -22,7 +22,7 @@ PostgreSQL documentation
  
 
 [ WITH [ RECURSIVE ] with_query [, ...] ]
-DELETE FROM [ ONLY ] table [ [ AS ] alias ]
+DELETE FROM [ ONLY ] table_name [ [ AS ] alias ]
     [ USING using_list ]
     [ WHERE condition | WHERE CURRENT OF cursor_name ]
     [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ]
@@ -107,7 +107,7 @@ DELETE FROM [ ONLY ] table [ [ AS ]
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of an existing table.
@@ -178,7 +178,7 @@ DELETE FROM [ ONLY ] table [ [ AS ]
      
       An expression to be computed and returned by the DELETE
       command after each row is deleted.  The expression can use any
-      column names of the table
+      column names of the table named by table_name
       or table(s) listed in USING.
       Write * to return all columns.
      
index dd8aafa74db8864cf93f37d9633d5840bc3a0ee0..1ed152f6a05646568737f59f2ba629d9f8d5638a 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-DROP AGGREGATE [ IF EXISTS ] name ( type [ , ... ] ) [ CASCADE | RESTRICT ]
+DROP AGGREGATE [ IF EXISTS ] name ( argtype [ , ... ] ) [ CASCADE | RESTRICT ]
 
  
 
@@ -60,7 +60,7 @@ DROP AGGREGATE [ IF EXISTS ] name (
    
 
    
-    type
+    argtype
     
      
       An input data type on which the aggregate function operates.
index 979a6ebc15ef7044a3e318325bcd9e55a9f6dcab..bcc5cfe78058f55a24933ee7aedf1645fc6bcac6 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-DROP EXTENSION [ IF EXISTS ] extension_name [, ...] [ CASCADE | RESTRICT ]
+DROP EXTENSION [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
 
  
 
@@ -54,7 +54,7 @@ DROP EXTENSION [ IF EXISTS ] extension_name
    
 
    
-    extension_name
+    name
     
      
       The name of an installed extension.
index b7ff6e6078ea932c3e8b5901d2642e41c49fba40..ca52347209bda9f8d8f5d46d5d066cfcdb0595ea 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-DROP RULE [ IF EXISTS ] name ON table [ CASCADE | RESTRICT ]
+DROP RULE [ IF EXISTS ] name ON table_name [ CASCADE | RESTRICT ]
 
  
 
@@ -58,7 +58,7 @@ DROP RULE [ IF EXISTS ] name ON 
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of the table or view that
index 6a64e83ebe620c29618256c0fa2aa7db8c6bd65b..a6e6743357edec005249a25c0918fd91f3e26eea 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-DROP SERVER [ IF EXISTS ] server_name [ CASCADE | RESTRICT ]
+DROP SERVER [ IF EXISTS ] name [ CASCADE | RESTRICT ]
 
  
 
@@ -50,7 +50,7 @@ DROP SERVER [ IF EXISTS ] server_name
    
 
    
-    server_name
+    name
     
      
       The name of an existing server.
index 107e049c8c68d03997c5ef50441b2a679ebae3cd..1db6ecd59ad1b65dda016aeba54c5f0fcb94a499 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-DROP TABLESPACE [ IF EXISTS ] tablespace_name
+DROP TABLESPACE [ IF EXISTS ] name
 
  
 
@@ -60,7 +60,7 @@ DROP TABLESPACE [ IF EXISTS ] tablespace_name
    
 
    
-    tablespace_name
+    name
     
      
       The name of a tablespace.
index 2fcc690db73bc3d2ddf64b029814ff1b53a613df..3ec6cc7f059f125f4add8c13f0688ec06913099d 100644 (file)
@@ -21,7 +21,7 @@ PostgreSQL documentation
 
  
 
-DROP TRIGGER [ IF EXISTS ] name ON table [ CASCADE | RESTRICT ]
+DROP TRIGGER [ IF EXISTS ] name ON table_name [ CASCADE | RESTRICT ]
 
  
 
@@ -60,7 +60,7 @@ DROP TRIGGER [ IF EXISTS ] name ON
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of the table for which
index 05f98bb6bb5085ab3bd20fb7210bb44e5ade763c..fb81af425da3881d33262ee8b2123d263b6c22b1 100644 (file)
@@ -27,8 +27,8 @@ GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER }
          | ALL TABLES IN SCHEMA schema_name [, ...] }
     TO { [ GROUP ] role_name | PUBLIC } [, ...] [ WITH GRANT OPTION ]
 
-GRANT { { SELECT | INSERT | UPDATE | REFERENCES } ( column [, ...] )
-    [, ...] | ALL [ PRIVILEGES ] ( column [, ...] ) }
+GRANT { { SELECT | INSERT | UPDATE | REFERENCES } ( column_name [, ...] )
+    [, ...] | ALL [ PRIVILEGES ] ( column_name [, ...] ) }
     ON [ TABLE ] table_name [, ...]
     TO { [ GROUP ] role_name | PUBLIC } [, ...] [ WITH GRANT OPTION ]
 
index 6aae3396d29bfe7f7157f5aa673b7bef3e2e792e..a3930beb38d5becbb2b295eaa64dc66e0e49cc29 100644 (file)
@@ -22,7 +22,7 @@ PostgreSQL documentation
  
 
 [ WITH [ RECURSIVE ] with_query [, ...] ]
-INSERT INTO table [ ( column [, ...] ) ]
+INSERT INTO table_name [ ( column_name [, ...] ) ]
     { DEFAULT VALUES | VALUES ( { expression | DEFAULT } [, ...] ) [, ...] | query }
     [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ]
 
@@ -106,7 +106,7 @@ INSERT INTO table [ ( 
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of an existing table.
@@ -115,10 +115,10 @@ INSERT INTO table [ ( 
    
 
    
-    column
+    column_name
     
      
-      The name of a column in table.
+      The name of a column in the table named by table_name.
       The column name can be qualified with a subfield name or array
       subscript, if needed.  (Inserting into only some fields of a
       composite column leaves the other fields null.)
@@ -139,8 +139,7 @@ INSERT INTO table [ ( 
     expression
     
      
-      An expression or value to assign to the corresponding 
-      class="PARAMETER">column.
+      An expression or value to assign to the corresponding column.
      
     
    
@@ -149,7 +148,7 @@ INSERT INTO table [ ( 
     DEFAULT
     
      
-      The corresponding column will be filled with
+      The corresponding column will be filled with
       its default value.
      
     
@@ -173,7 +172,7 @@ INSERT INTO table [ ( 
      
       An expression to be computed and returned by the INSERT
       command after each row is inserted.  The expression can use any
-      column names of the table.
+      column names of the table named by table_name.
       Write * to return all columns of the inserted row(s).
      
     
index 202a2a35ab4744acc0ecb71816f3078b74b905c8..d2c5a4a5054b3c6367ca09509fa2b22cf4b19ac0 100644 (file)
@@ -30,8 +30,8 @@ REVOKE [ GRANT OPTION FOR ]
     [ CASCADE | RESTRICT ]
 
 REVOKE [ GRANT OPTION FOR ]
-    { { SELECT | INSERT | UPDATE | REFERENCES } ( column [, ...] )
-    [, ...] | ALL [ PRIVILEGES ] ( column [, ...] ) }
+    { { SELECT | INSERT | UPDATE | REFERENCES } ( column_name [, ...] )
+    [, ...] | ALL [ PRIVILEGES ] ( column_name [, ...] ) }
     ON [ TABLE ] table_name [, ...]
     FROM { [ GROUP ] role_name | PUBLIC } [, ...]
     [ CASCADE | RESTRICT ]
index 1c0e21536b156decedf9743c9deb51e533589e8f..c575374dd0d3c0b370da5ec73d4a2a1825b11732 100644 (file)
@@ -22,9 +22,9 @@ PostgreSQL documentation
  
 
 [ WITH [ RECURSIVE ] with_query [, ...] ]
-UPDATE [ ONLY ] table [ [ AS ] alias ]
-    SET { column = { expression | DEFAULT } |
-          ( column [, ...] ) = ( { expression | DEFAULT } [, ...] ) } [, ...]
+UPDATE [ ONLY ] table_name [ [ AS ] alias ]
+    SET { column_name = { expression | DEFAULT } |
+          ( column_name [, ...] ) = ( { expression | DEFAULT } [, ...] ) } [, ...]
     [ FROM from_list ]
     [ WHERE condition | WHERE CURRENT OF cursor_name ]
     [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ]
@@ -93,7 +93,7 @@ UPDATE [ ONLY ] table [ [ AS ] 
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of the table to update.
@@ -115,11 +115,11 @@ UPDATE [ ONLY ] table [ [ AS ] 
    
 
    
-    column
+    column_name
     
      
-      The name of a column in 
-      class="PARAMETER">table.
+      The name of a column in the table named by 
+      class="PARAMETER">table_name.
       The column name can be qualified with a subfield name or array
       subscript, if needed.  Do not include the table's name in the
       specification of a target column — for example,
@@ -198,7 +198,7 @@ UPDATE [ ONLY ] table [ [ AS ] 
      
       An expression to be computed and returned by the UPDATE
       command after each row is updated.  The expression can use any
-      column names of the table
+      column names of the table named by table_name
       or table(s) listed in FROM.
       Write * to return all columns.
      
index f05babc76a5b9aa7df7a166a2dc7186026d8673f..eb71581dfd2ca59b00192f5bd444a01216ca3710 100644 (file)
@@ -21,9 +21,9 @@ PostgreSQL documentation
 
  
 
-VACUUM [ ( { FULL | FREEZE | VERBOSE | ANALYZE } [, ...] ) ] [ table [ (column [, ...] ) ] ]
-VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ table ]
-VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ table [ (column [, ...] ) ] ]
+VACUUM [ ( { FULL | FREEZE | VERBOSE | ANALYZE } [, ...] ) ] [ table_name [ (column_name [, ...] ) ] ]
+VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ table_name ]
+VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ table_name [ (column_name [, ...] ) ] ]
 
  
 
@@ -127,7 +127,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ 
    
 
    
-    table
+    table_name
     
      
       The name (optionally schema-qualified) of a specific table to
@@ -137,7 +137,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ 
    
 
    
-    column
+    column_name
     
      
       The name of a specific column to analyze. Defaults to all columns.