I'm using the query INSERT INTO ... ON DUPLICATE KEY UPDATE ...
in order to insert a record into the table, and if a row with duplicate keys already exists, this results in triggering an update.
I don't want any updates being performed on an existing row, if exist.
What should I do to update nothing when a row with duplicate keys exist?