<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#333399">
Being new to PostGIS, I haven't figured out how to properly compute the
Intersection of all 14 records in my table (i.e., compute the region
that all 14 polygons share in common).<br>
<br>
Since Intersection() only takes 2 geoms as args, I'm a little lost as
to how I would build a query to do the job.  I wish PostGIS's
Intersection() function would work with Geometry Sets like the
GeomUnion function does.  If that were the case, I could do:<br>
<br>
select Intersection( (select the Geom from theGeometries) );<br>
<br>
But since, this is not the case, how do acquire the same results from a
query?<br>
<br>
Mark<br>
</body>
</html>