Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 MySQL 数据库中,我有一个自动增量列,它将 ID 保存为 8 位数字。
但是数字从 开始00000114,有没有办法从另一个数字“82925298”开始?
00000114
谢谢
ALTER TABLE tbl AUTO_INCREMENT = 82925298;
从手册:
要从 1 以外的 AUTO_INCREMENT 值开始,您可以使用 CREATE TABLE 或 ALTER TABLE 设置该值,如下所示: ALTER TABLE tbl AUTO_INCREMENT = 82925298;
要从 1 以外的 AUTO_INCREMENT 值开始,您可以使用 CREATE TABLE 或 ALTER TABLE 设置该值,如下所示: