Pregunta

I want to find duplicate data with this query which may occur during insertion. Is there any way to find it?

INSERT INTO table_tags (tag) VALUES ('tag_a'),('tab_b'),('tag_c')
ON DUPLICATE KEY UPDATE tag=tag;
¿Fue útil?

Solución

Try something like this

INSERT INTO table_tags
   (tag)
VALUES
   (?)
ON DUPLICATE KEY UPDATE
   tag     = VALUES('tag_a')

Note that, column tag should be unique

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top