I have a table with the identifier auto_inc (primary key). I am trying to avoid inserting duplicate rows.
Example of a repeating line:
id | field a | field b | field c | 1 4 6 7 2 4 6 7
The key (id) is not duplicated, since it is automatically generated by mySQL, but all other fields are identical.
source share