I am a newbie postgis user and have a question regarding views.<br><br>I have a table that contains polygons - poly. This table is supplied by an external party so I don't want to alter the table structure in any way.<br>I have another table that lists the category each polygon falls within ie
<br><br>polyid, cat<br>1, 2<br>2, 2<br>3, 2<br>4, 1<br>5, 3<br><br>I can create a view of categories by doing something like "select poly.oid, category.cat from poly, category where poly.polyid = category.polyid;"
<br><br>Is it possible to dissolve the polygon geometries based on the category in the select statement above?<br><br>Thanks in advance.<br><br>Craig<br>