Insert Ignore - Mysql Query
Jun 9th, 2008 by sherlock Hit :: 1654
The row won’t actually be inserted if it results in a duplicate key.
Syntac ::
Insert ignore into T values(a, b, c)
Insert ignore into T(a, b, c) SELECT a, b, c FROM F
NB :: The Table must have a primary key.