Supondo que por
você realmente quer
UPDATE
linhas existentes em table2
:UPDATE table2 t2
SET the_geom = t1.the_geom
FROM table1 t1
WHERE t2.address = t1.address
AND t2.the_geom IS DISTINCT FROM t1.the_geom; -- avoid empty updates
Resposta relacionada:
Supondo também que o
address
coluna tem UNIQUE
valores.Detalhes para
UPDATE
no manual
.