You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
28
-
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { SET DEFAULT <replaceable class="PARAMETER">value</replaceable> | DROP DEFAULT }
29
-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
27
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
28
+
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { SET DEFAULT <replaceable class="PARAMETER">expression</replaceable> | DROP DEFAULT }
29
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
30
30
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { SET | DROP } NOT NULL
31
-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
31
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
32
32
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> SET STATISTICS <replaceable class="PARAMETER">integer</replaceable>
33
-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
33
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
34
34
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
35
-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
35
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
36
36
SET WITHOUT OIDS
37
-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
37
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
38
38
RENAME [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> TO <replaceable
39
39
class="PARAMETER">new_column</replaceable>
40
-
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
41
-
RENAME TO <replaceable class="PARAMETER">new_table</replaceable>
42
-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
40
+
ALTER TABLE <replaceable class="PARAMETER">name</replaceable>
41
+
RENAME TO <replaceable class="PARAMETER">new_name</replaceable>
42
+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
ALTER TRIGGER <replaceable class="PARAMETER">trigger</replaceable> ON <replaceable class="PARAMETER">table</replaceable>
24
-
RENAME TO <replaceable class="PARAMETER">newname</replaceable>
23
+
ALTER TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table</replaceable> RENAME TO <replaceable class="PARAMETER">newname</replaceable>
25
24
</synopsis>
26
25
</refsynopsisdiv>
27
26
@@ -45,7 +44,7 @@ ALTER TRIGGER <replaceable class="PARAMETER">trigger</replaceable> ON <replaceab
ALTER USER <replaceable class="PARAMETER">username</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
23
+
ALTER USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
24
24
25
25
where <replaceable class="PARAMETER">option</replaceable> can be:
26
26
@@ -29,10 +29,10 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
29
29
| CREATEUSER | NOCREATEUSER
30
30
| VALID UNTIL '<replaceable class="PARAMETER">abstime</replaceable>'
31
31
32
-
ALTER USER <replaceable class="PARAMETER">username</replaceable> RENAME TO <replaceable>newname</replaceable>
32
+
ALTER USER <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>newname</replaceable>
33
33
34
-
ALTER USER <replaceable class="PARAMETER">username</replaceable> SET <replaceable>variable</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
35
-
ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replaceable>variable</replaceable>
34
+
ALTER USER <replaceable class="PARAMETER">name</replaceable> SET <replaceable>parameter</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
35
+
ALTER USER <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>parameter</replaceable>
36
36
</synopsis>
37
37
</refsynopsisdiv>
38
38
@@ -75,7 +75,7 @@ ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replacea
0 commit comments