Hi all,<br><br>I have two table provinces an points of interests. I wanna update province_id column with st_intersects function..<br><br>My sql;<br><br>update poi set province_id=(<br>                                         select <a href="http://province.id">province.id</a> from province,poi where intersects(poi.the_geom, province.the_geom)=True group by province.ogc_fid<br>
)<br><br>