I am currently using a version of:
SELECT a,b
FROM tbl
GROUP BY a,b
HAVING COUNT(*)>1;
I know the results are correct given what actions I've taken on the table. But, it doesn't actually show me the duplicates. The "GROUP BY" clause blocks the other half of the records from showing.
I know this probably has a simple solution, but how do I actually show the duplicates? In other words, if there are 110 duplicates, I should get 220 records.
Thanks