File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -194,8 +194,8 @@ INSERT INTO <replaceable class="PARAMETER">table_name</replaceable> [ AS <replac
194194 column leaves the other fields null.) When referencing a
195195 column with <literal>ON CONFLICT DO UPDATE</>, do not include
196196 the table's name in the specification of a target column. For
197- example, <literal>INSERT ... ON CONFLICT DO UPDATE tab SET
198- table_name.col = 1</> is invalid (this follows the general
197+ example, <literal>INSERT INTO table_name ... ON CONFLICT DO UPDATE
198+ SET table_name.col = 1</> is invalid (this follows the general
199199 behavior for <command>UPDATE</>).
200200 </para>
201201 </listitem>
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ UPDATE [ ONLY ] <replaceable class="PARAMETER">table_name</replaceable> [ * ] [
123123 The column name can be qualified with a subfield name or array
124124 subscript, if needed. Do not include the table's name in the
125125 specification of a target column — for example,
126- <literal>UPDATE tab SET tab .col = 1</> is invalid.
126+ <literal>UPDATE table_name SET table_name .col = 1</> is invalid.
127127 </para>
128128 </listitem>
129129 </varlistentry>
You can’t perform that action at this time.
0 commit comments