Vorausgesetzt, dass von
Sie meinen tatsächlich UPDATE vorhandene Zeilen in 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
Zugehörige Antwort:
Auch vorausgesetzt, dass die address Spalte hat UNIQUE Werte.
Details für UPDATE im Handbuch
.