Answers for "mysql insert and ignore if duplicate"

SQL
3

mysql insert on dupèlicate

INSERT INTO table_name(c1)
VALUES(c1)
ON DUPLICATE KEY UPDATE c1 = VALUES(c1) + 1;
Posted by: Guest on February-27-2020

Code answers related to "mysql insert and ignore if duplicate"

Code answers related to "SQL"

Browse Popular Code Answers by Language