Perhatikan lebih dekat sintaks untuk INSERT ... ON DUPLICATE
. Setelah ON DUPLICATE KEY UPDATE
muncul urutan kolom =ekspresi pernyataan. Coba sesuatu seperti:
INSERT INTO testTable (adhex,reg,mtime)
VALUES ('00B0BA','reg-1','1294129605')
ON DUPLICATE KEY UPDATE reg=IF(mtime < VALUES(mtime), 'ZsS-SLD', reg),
mtime=IF(mtime < VALUES(mtime), VALUES(mtime), mtime)