I have a MySQL table with thousands of rows, and I think the algorithm that inserted those rows may have been glitched and inserted some duplicate data. Is there a quick, SQL-only way to ensure that every row is different, or do I have to manually select every row, load it into a PHP array, and check that all items are unique?
Note: I know how to do this (the long and hard way), but I'm asking if there's a shortcut or a better way.