I created a table entries
with UNIQUE KEY title
. Now I want to execute the query INSERT ... ON DUPLICATE KEY UPDATE
, but I get compilation errors in phpMyAdmin:
Query:
INSERT INTO `entriess` (`title`, `description`)
VALUES ("TEST", "TEST")
ON DUPLICATE KEY UPDATE `title`=`AAA`
What am I doing wrong?