11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.35 2002/01/20 22:19:56 petere Exp $
2+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.36 2002/02/16 23:45:48 momjian Exp $
33PostgreSQL documentation
44-->
55
@@ -34,13 +34,13 @@ ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
3434 RENAME [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> TO <replaceable
3535 class="PARAMETER">newcolumn</replaceable>
3636ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
37- RENAME TO <replaceable class="PARAMETER">newtable </replaceable>
37+ RENAME TO <replaceable class="PARAMETER">new_table </replaceable>
3838ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
39- ADD <replaceable class="PARAMETER">table constraint definition </replaceable>
39+ ADD <replaceable class="PARAMETER">table_constraint_definition </replaceable>
4040ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable>
4141 DROP CONSTRAINT <replaceable class="PARAMETER">constraint</replaceable> { RESTRICT | CASCADE }
4242ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
43- OWNER TO <replaceable class="PARAMETER">new owner </replaceable>
43+ OWNER TO <replaceable class="PARAMETER">new_owner </replaceable>
4444 </synopsis>
4545
4646 <refsect2 id="R2-SQL-ALTERTABLE-1">
@@ -89,7 +89,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
8989 </varlistentry>
9090
9191 <varlistentry>
92- <term><replaceable class="PARAMETER"> newtable </replaceable></term>
92+ <term><replaceable class="PARAMETER"> new_table </replaceable></term>
9393 <listitem>
9494 <para>
9595 New name for the table.
@@ -98,7 +98,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
9898 </varlistentry>
9999
100100 <varlistentry>
101- <term><replaceable class="PARAMETER"> table constraint definition </replaceable></term>
101+ <term><replaceable class="PARAMETER"> table_constraint_definition </replaceable></term>
102102 <listitem>
103103 <para>
104104 New table constraint for the table
@@ -107,7 +107,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
107107 </varlistentry>
108108
109109 <varlistentry>
110- <term><replaceable class="PARAMETER">New user </replaceable></term>
110+ <term><replaceable class="PARAMETER">new_owner </replaceable></term>
111111 <listitem>
112112 <para>
113113 The user name of the new owner of the table.
@@ -173,7 +173,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
173173 column, index, or sequence to change without changing any of the
174174 data. The data will remain of the same type and size after the
175175 command is executed.
176- The ADD <replaceable class="PARAMETER">table constraint definition </replaceable> clause
176+ The ADD <replaceable class="PARAMETER">table_constraint_definition </replaceable> clause
177177 adds a new constraint to the table using the same syntax as <xref
178178 linkend="SQL-CREATETABLE" endterm="SQL-CREATETABLE-TITLE">.
179179 The DROP CONSTRAINT <replaceable class="PARAMETER">constraint</replaceable> clause
0 commit comments