Donné:
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)
);
Cette requête:
insert into table_b (pk_b, b)
select pk_a,a from table_a
on conflict (b) do update set b=a;
provoque l'erreur suivante:
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.
Comment faire la mise à jour en se référant au contenu de table_a
?
do update set b = a;
ne peut pas trouver "a" car il fait référence au tableau "b" et non à la sous-requête, essayezdo update set b = (select a from a);
CREATE TABLE A...
crée une tablea
, nontable_a
.