<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Apr 6, 2013 at 2:18 AM, Margie Roswell <span dir="ltr"><<a href="mailto:mroswell@gmail.com" target="_blank">mroswell@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I've been googling up a storm, now that I've got a local postgis database with QGIS. But still haven't figured out how to display a newly created table. <br>
<br>The query I used to create the table:<br><div style="margin-left:40px">

CREATE TABLE smaller_leg_final AS<br>SELECT ST_Buffer(geom,-500)  AS geom, legislative_final.district<br>FROM legislative_final<br>WHERE area > 30;<br></div><br>I then discovered that I needed a unique ID, and did the following:<br>


<div style="margin-left:40px">ALTER TABLE smaller_leg_final ADD COLUMN id serial not null;<br></div></blockquote><div><br><br></div><div>Why don't you try making you unique column a primary key?<br><br>ALTER TABLE smaller_leg_final<br>
  ADD CONSTRAINT smaller_leg_final_pk PRIMARY KEY(id); <br><br></div><div>Rich<br></div></div></div></div>