質問

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;
役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top