I have a MySQL database table with two columns that interest me. Individually they can each have duplicates, but they should never have a duplicate of BOTH of them having th
You can find duplicates like this..
Select stone_id, upcharge_title, count(*) from particulartable group by stone_id, upcharge_title having count(*) > 1