I have a table with two columns - artist, release_id
What query can I run to show duplicate records?
e.g. my table is
ArtistX : 45677 ArtistY
SELECT id,artist,COUNT(*) FROM myTable GROUP BY artist, release_id HAVING COUNT(*) > 1