MySQL 设置自动增量“Ad Hoc”

发布于 2024-09-06 13:16:12 字数 196 浏览 3 评论 0原文

有没有办法以“临时”方式将 mysql 的 auto_increment 设置为某个整数 - 例如,表中已删除 N 个最新行,因此主键/auto_increment 与实际行数相差 N ?有没有办法将 auto_increment 设置为正确的数字,或者手动设置它?

这似乎很常见,所以我相信已经被问过,但我无法找到解决方案,除了这是不可能的或者你不应该这样做。

Is there a way to set mysql's auto_increment to a certain integer in an "ad hoc" way - for example, N of the latest rows have been deleted in a table, so the primary key/auto_increment is N off from the actual # of rows? Is there a way to set the auto_increment to the right number, or to manually set it?

This seems common, so I believe it has been asked already, but I've not been able to find a solution, other than that this isn't possible or you shouldn't do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

挥剑断情 2024-09-13 13:16:12

ALTER TABLE 表名 AUTO_INCRMENT = 100;

ALTER TABLE tablename AUTO_INCREMENT = 100;

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