MySQL table primary keys and unique indexes prevent multiple rows with the same index from being added to the table. If you try to insert a duplicate row with a ...
Also,<BR> Look at the IGNORE_DUP_KEY argument to the CREATE INDEX statement. I don't think that this works with primary keys, but you could certainly setup a unique index with this option on. Keep in ...