Hello,
How do I remove duplicate records from a table? I am comparing two tables by customer SSN and the results return several duplicate records. Can some one post a reply that can remove the duplicates prior to dumping my results? Here is a copy of my Query Below:
SELECT *, flhomes.debtor_ssn AS Expr1, SCACCT.GSS# AS Expr2
FROM SCACCT INNER JOIN
flhomes ON SCACCT.GSS# = flhomes.debtor_ssn
Sometimes one person whos SSN matches returns like 20 records. My boss just wants one result per person that matches. Can anyone help?
Thanks In Advance,
John
Boca Raton, FL
John
Systems Manager
Boca Raton, FL
How do I remove duplicate records from a table? I am comparing two tables by customer SSN and the results return several duplicate records. Can some one post a reply that can remove the duplicates prior to dumping my results? Here is a copy of my Query Below:
SELECT *, flhomes.debtor_ssn AS Expr1, SCACCT.GSS# AS Expr2
FROM SCACCT INNER JOIN
flhomes ON SCACCT.GSS# = flhomes.debtor_ssn
Sometimes one person whos SSN matches returns like 20 records. My boss just wants one result per person that matches. Can anyone help?
Thanks In Advance,
John
Boca Raton, FL
John
Systems Manager
Boca Raton, FL