From: "Scott Frankel" <leknarf(at)pacbell(dot)net>
>
> I want to ensure data integrity when inserting into a table, preventing
> multiple
> entries of identical rows of data.
>
> sample table:
>
> CREATE TABLE names (the_id SERIAL PRIMARY KEY, the_name text);
sounds like a job for a UNIQUE constraint
gnari