I have two tables with polygons (CTR_daim and CTA_LOW_1111). I have this query to select all polygons from CTR_daim that is intersected by any of the polygons from table CTA_LOW_1111
WITH
transform_t2 AS (SELECT *, ST_transform("CTA_LOW_1111".the_geom, 4619) AS geom
FROM "CTA_LOW_1111"),
transform_t1 AS (SELECT * FROM "CTR_daim")
SELECT DISTINCT(transform_t1.*), ST_asText(transform_t1.the_geom) AS geomastext FROM
transform_t1, transform_t2
WHERE ST_intersects(transform_t1.the_geom, transform_t2.geom)
How can I "inverse" this query to select the polygons that are not intersected by any polygons in CTA_LOW_1111?

