I need to update a query so that it checks that a duplicate entry does not exist before insertion. In MySQL I can just use INSERT IGNORE so that if a duplicate record is fo
How about simply adding an index with whatever fields you need to check for dupes on and say it must be unique? Saves a read check.