G
Guest
This SQL shows me records that have duplicates (>1)
It only shows one ICNNo and a NUMBER of how many >1
I need to show the data for both records so I know which to delete..
Suggeations?
SELECT tblAudit.ICNNo, Count(*) AS NUMBER
FROM tblAudit
GROUP BY tblAudit.ICNNo
HAVING (((Count(*))>1));
It only shows one ICNNo and a NUMBER of how many >1
I need to show the data for both records so I know which to delete..
Suggeations?
SELECT tblAudit.ICNNo, Count(*) AS NUMBER
FROM tblAudit
GROUP BY tblAudit.ICNNo
HAVING (((Count(*))>1));