重置脚本mysql中的自动增量列值
我有两个 mysql 表,一个需要用另一个表中最后插入行的最后一个值(加 1)来启动其自动递增列 id。
根据 mysql 手册,您可以像这样重新启动自动增量列的值:
mysql> ALTER TABLE tbl AUTO_INCREMENT = 100;
但是,这是不可能的:
mysql> ALTER TABLE tb2 AUTO_INCREMENT = (SELECT MAX(id) FROM tbl1);
我需要执行类似的操作,因为我正在使用脚本填充表。还有其他方法可以实现吗?
I have two mysql tables, one needs to start its auto-increment column id with the last value of the last inserted row in the other table (plus 1).
According to mysql manual you can restart the value of an auto increment column like this:
mysql> ALTER TABLE tbl AUTO_INCREMENT = 100;
However, this is not possible:
mysql> ALTER TABLE tb2 AUTO_INCREMENT = (SELECT MAX(id) FROM tbl1);
I need to perform something like this because I'm filling the tables using a script. Is there another way to achieve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您正在尝试将自动增量列用于不太适合的用途。如果您关心插入的确切值,那么它不应该自动递增。
I think you are trying to use the auto-increment column for something it is not well suited to. If you care about the exact values that get inserted then it shouldn't be auto-increment.
它使用此脚本,
其中 people 是我的表,或者您可以通过 GUI 执行此操作(选择当前表的 phpmyadmin 操作选项卡)
IT IS USING THIS SCRIPT
where people is my table, or you can do this through GUI (operation tab of phpmyadmin with current table selected)
创建一个虚拟记录并增量怎么样?
What about create a dummy record and increment?