postgresqlテーブル「polygontable」にポリゴンを挿入してから、さらにクエリを実行するためにその(the_geom)値を返す必要があります。最近挿入されたインスタンスを「polygontable」で取得したいと思います。SELECTステートメントで返された「polygongeom」を呼び出すにはどうすればよいですか?
INSERT INTO polygontable (the_geom)
VALUES (ST_SetSRID((ST_MakeValid(ST_GeomFromGeoJSON('"+JSON.stringify(payload)+"'))),4326)) returning the_geom as polygon_geom;
SELECT st_intersects(polygon_geom, other_table.the_geom)
from polygon_geom, other_table;