从表中删除后自动递增
可能的重复:
MySQL:重新排序/重置自动增量主键?
如果我从我的表是 ligne,在这个表中我有一个自动增量 ID, 从 id=2 的表中删除
此后,表将像这样
ID | NAme
1 aaa
3 cccc
我如何将 ID 修复为这样
ID | NAme
1 aaa
2 cccc
3 dddd
Possible Duplicate:
MySQL: Reorder/Reset auto increment primary key?
if I delete from my table a ligne and in this table i have an auto increment ID ,
DELETE From table where id=2
after this the table will be like this
ID | NAme
1 aaa
3 cccc
how can i fix the ID to be like this
ID | NAme
1 aaa
2 cccc
3 dddd
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个答案:重新排序/重置自动增量主键
Look at this answer: Reorder / reset auto increment primary key
自动增量不是这样工作的。如果表中有 2 条 ID 为 1 和 2 的记录,并且删除了 ID 为 2 的记录,则下一条记录将始终为 3。
出于您需要的原因,建议您添加额外的列来保存这些值。
另外,我很久以前在学校学到,在伟大的系统中,永远不会删除记录。有一个列保存时间戳值,将它们标记为“已删除”。
Autoincrement doesn't work this way. If you have 2 records on table with ID-s 1 and 2 and you delete the record with ID 2, then the next will always will be still 3.
Suggest you to add additional column with holding those values for the reasons you need it for.
Also, I learned in school long time ago, that in great systems, never records are deleted. There's a column holding timestamp value that marks them as "deleted".