Pertanyaan yang diberi tag unique-key

184
INSERT ... ON DUPLICATE KEY (tidak melakukan apa-apa)

Saya punya tabel dengan kunci unik untuk dua kolom: CREATE TABLE `xpo`.`user_permanent_gift` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT , `fb_user_id` INT UNSIGNED NOT NULL , `gift_id` INT UNSIGNED NOT NULL , `purchase_timestamp` TIMESTAMP NULL DEFAULT now() , PRIMARY KEY (`id`) , UNIQUE INDEX...