mysql数据库。
表格中包含“代码”字段的索引。 我需要插入表新行。 什么工作得更快?
1)
SELECT COUNT(*) FROM table WHERE Code = 'NewCode';
Insert into table values ('NewCode')
2)
Insert IGNORE into table values ('NewCode')
答案 0 :(得分:0)
对我来说更安全(并且可以作为更改的备份 - 更好的方式)是第一个,但我认为行动是相似的。 请咨询http://dev.mysql.com/doc/refman/5.5/en/insert.html了解更多详情
paladinux