Dany:
CREATE TABLE A (
PK_A INT8 NOT NULL,
A INT8,
PRIMARY KEY (PK_A)
);
CREATE TABLE B (
PK_B INT8 NOT NULL,
B INT8,
PRIMARY KEY (PK_B)
);
To zapytanie:
insert into table_b (pk_b, b)
select pk_a,a from table_a
on conflict (b) do update set b=a;
powoduje następujący błąd:
ERROR: column "a" does not exist LINE 1: ...elect pk_a,a from table_a on conflict (b) do update set b=a; ^ HINT: There is a column named "a" in table "*SELECT*", but it cannot be referenced from this part of the query.
Jak wykonać aktualizację, odnosząc się do treści table_a
?
do update set b = a;
nie może znaleźć „a”, ponieważ istnieje odniesienie do tabeli „B”, a nie do podzapytania, spróbujdo update set b = (select a from a);
CREATE TABLE A...
tworzy tabelęa
, a nietable_a
.