Hi,
How can I use an SQL - SELECT statement to ONLY list duplicate records?
if I do:
SELECT name1 DISTINCT, gender, jobdesc;
FROM clients INTO CURSOR tmpcursor
This will give me a list of all none duplicate names. What I am looking for are all the names that are duplicates (the ones that do repeat).
Thanks,
Louis
How can I use an SQL - SELECT statement to ONLY list duplicate records?
if I do:
SELECT name1 DISTINCT, gender, jobdesc;
FROM clients INTO CURSOR tmpcursor
This will give me a list of all none duplicate names. What I am looking for are all the names that are duplicates (the ones that do repeat).
Thanks,
Louis