You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT (ST_Dump(ST_Difference(a.geom, b.geom))).geom geom FROM in_gd2 a CROSS JOIN LATERAL (SELECT ST_Collect(geom) AS geom FROM in_gd1 WHERE ST_Intersects(a.geom, geom)) AS b;
$BODY$
LANGUAGE SQL
SELECT ST_CarvesPolygons(a.geom, b.geom) geom FROM (SELECT ST_Collect(geom) geom FROM polygons) a, poly_extent b;