重置脚本mysql中的自动增量列值

发布于 2024-08-31 23:35:18 字数 309 浏览 2 评论 0原文

我有两个 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 技术交流群。

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

发布评论

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

评论(3

难以启齿的温柔 2024-09-07 23:35:18

我认为您正在尝试将自动增量列用于不太适合的用途。如果您关心插入的确切值,那么它不应该自动递增。

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.

夜吻♂芭芘 2024-09-07 23:35:18

它使用此脚本,

ALTER TABLE `people` AUTO_INCREMENT =1

其中 people 是我的表,或者您可以通过 GUI 执行此操作(选择当前表的 phpmyadmin 操作选项卡)

IT IS USING THIS SCRIPT

ALTER TABLE `people` AUTO_INCREMENT =1

where people is my table, or you can do this through GUI (operation tab of phpmyadmin with current table selected)

往昔成烟 2024-09-07 23:35:18

创建一个虚拟记录并增量怎么样?

-- insert dummy forcing id
INSERT INTO 'tb2' (ID, NAME, ...)
VALUES (SELECT MAX(id) FROM tb1, "dummy", ...);

-- automagically increment to last id + 1
ALTER TABLE `tb2' AUTO_INCREMENT = 1; -- only myISAM

-- delete dummy
DELETE FROM 'tb2' WHERE NAME="dummy";

What about create a dummy record and increment?

-- insert dummy forcing id
INSERT INTO 'tb2' (ID, NAME, ...)
VALUES (SELECT MAX(id) FROM tb1, "dummy", ...);

-- automagically increment to last id + 1
ALTER TABLE `tb2' AUTO_INCREMENT = 1; -- only myISAM

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