<div><div><br>Michael,<br>Thanks for your reply.<br>I believe that is what I am looking for, however I can not get it to work. Not sure if it is because my various tables are in two separate schemas or not. I have copied my SQL below, but it keeps giving me an error;
<br><span style="font-style: italic;">An error has occured:<br>ERROR: column c.propertyid does not exist</span><br><br>I tried various combinations of the SQL syntax but to no avail.<br><br>View definition:<br>SELECT c.kilter
, GeomUnion(p.the_geom) AS the_geom<br>FROM vmprop.property_view AS p<br>JOIN kilter.property AS c ON c.propertyID = p.pfi<br>GROUP BY c.kilter;<br><br>Craig<br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Is the following what you're looking for?  If not then please explain<br>in more detail what you'd like to do.<br><br>CREATE VIEW catview AS<br>SELECT c.cat, GeomUnion(p.geom) AS geom<br>FROM poly AS p<br>JOIN category AS c ON 
c.polyid = p.polyid<br>GROUP BY c.cat;<br><br>--<br>Michael Fuhr<br><br></blockquote></div><br>