从表中删除后自动递增

发布于 2024-11-17 09:25:09 字数 434 浏览 3 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

从来不烧饼 2024-11-24 09:25:09

自动增量不是这样工作的。如果表中有 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文