J'ai deux tables: les emplacements (id, region_id, the_geom) et les régions (id, the_geom). Pour chaque point de localisation, je veux déterminer la région dans laquelle il se trouve: UPDATE locations SET region_id = (SELECT id FROM regions WHERE ST_Within(locations.the_geom,regions.the_geom) );...