作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
INSERT IGNORE INTO sobd_voucher_types(voucher_type) VALUES('$voucher_array[$i]')
我想避免插入重复数据。 voucher_type 列是唯一的。当我在 mysql 上运行这个查询时,它运行正常。但当我从 php 运行时,却没有相同的查询。重复数据仍在插入
最佳答案
如果插入重复数据,则意味着voucher_type
列不唯一,因为IGNORE
仅跳过错误(不防止重复插入)。
https://dev.mysql.com/doc/refman/5.7/en/insert.html
If you use the IGNORE modifier, errors that occur while executing the INSERT statement are ignored. For example, without IGNORE, a row that duplicates an existing UNIQUE index or PRIMARY KEY value in the table causes a duplicate-key error and the statement is aborted. With IGNORE, the row is discarded and no error occurs. Ignored errors may generate warnings instead, although duplicate-key errors do not.
关于php - INSERT IGNORE INTO 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45605377/
我是一名优秀的程序员,十分优秀!