P
Peter Carlson
All of my records should have a unique ID (imported from a text file so
it's NOT a key). I am looking for duplicate ID#'s
My select should look something like:
SELECT Last, First, ID from Student_List where count(id) > 1 Group by ID
order by ID, Last, First;
However I get an error cannot have aggregate function in WHERE clause
(count(id) > 1)
How can I go about doing this one?
Peter
it's NOT a key). I am looking for duplicate ID#'s
My select should look something like:
SELECT Last, First, ID from Student_List where count(id) > 1 Group by ID
order by ID, Last, First;
However I get an error cannot have aggregate function in WHERE clause
(count(id) > 1)
How can I go about doing this one?
Peter