Dato:
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)
);
Questa query:
insert into table_b (pk_b, b)
select pk_a,a from table_a
on conflict (b) do update set b=a;
provoca il seguente errore:
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.
Come eseguire l'aggiornamento facendo riferimento al contenuto di table_a
?
do update set b = a;
non riesce a trovare "a" perché non c'è riferimento alla Tabella "B" e non alla sottoquery, provaredo update set b = (select a from a);
CREATE TABLE A...
crea tabellaa
, notable_a
.