Я пользователь pgadmin ... У меня проблема с синтаксисом SQL Server для пространственных объединений.
Мне нужен этот запрос на SQL Server:
select *
from table a, table b
where st_within (st_centroid(a.geom), b.geom)
или
update table a
set x = b.x
from table b
where st_within (st_centroid(a.geom), b.geom)