Re: problem with on conflict / do update using psql 14.4

Поиск
Список
Период
Сортировка
От Christophe Pettus
Тема Re: problem with on conflict / do update using psql 14.4
Дата
Msg-id FD75AF4B-D503-4B1A-BA13-BE5E4FA9CB7E@thebuild.com
обсуждение исходный текст
Ответ на Re: problem with on conflict / do update using psql 14.4  (Barry Kimelman <blkimelman@gmail.com>)
Ответы Re: problem with on conflict / do update using psql 14.4  (Barry Kimelman <blkimelman@gmail.com>)
Список pgsql-general

> On Sep 24, 2022, at 08:29, Barry Kimelman <blkimelman@gmail.com> wrote:
> Thanks for the response. When I ran the INSERT with your suggested change I got an error message telling me
> "column reference 'company_name' is ambiguous"

As previously noted, you'll need to do both: add "excluded." to qualify the column names in the UPDATE.  Here's a
contrivedexample: 

xof=# create table t(i integer, j integer, k integer);
CREATE TABLE
xof=# create unique index on t(i) where j != 0;
CREATE INDEX
xof=# insert into t(i, j, k) values(1, 2, 3) on conflict (i) do update set k=k+1;
ERROR:  column reference "k" is ambiguous
LINE 1: ..., j, k) values(1, 2, 3) on conflict (i) do update set k=k+1;
xof=# insert into t(i, j, k) values(1, 2, 3) on conflict (i) do update set k=excluded.k+1;
ERROR:  there is no unique or exclusion constraint matching the ON CONFLICT specification
xof=# insert into t(i, j, k) values(1, 2, 3) on conflict (i) where j != 0 do update set k=excluded.k+1;
INSERT 0 1




В списке pgsql-general по дате отправления:

Предыдущее
От: Barry Kimelman
Дата:
Сообщение: Re: problem with on conflict / do update using psql 14.4
Следующее
От: Barry Kimelman
Дата:
Сообщение: Re: problem with on conflict / do update using psql 14.4