I have a table in MySQL with 30 columns and thousands of entries. Is there a way I could make every row unique, that means if a row already exists, I should not be able to e
You can hash the data and set the hash value as your PK, this will ensure that the rows are unique.