有没有一种方法可以运行一个查询而不是PosgreSQL / PostGIS中的两个查询

时间:2020-09-30 19:44:23

标签: sql postgresql postgis

第一个查询是:

SELECT ST_Union(ST_Buffer(geom_kiosk, 250)::geometry(Polygon, 32618)) as geom 
FROM tbl_kiosk 
WHERE cte = 'ctejeremie' 
      and status = 'functional' and type = 'public';

第二个查询是:

INSERT INTO tbl_buffer (geom_buffer, distance, cte, date_added) 
VALUES(geom, 250,'ctejeremie', now());

谢谢

1 个答案:

答案 0 :(得分:1)

hashCode