如何在 MySQL 中设置初始值和自动增量?

2021-11-20 00:00:00 insert mysql auto-increment

如何为从 1001 开始的 MySQL 表中的id"列设置初始值?

How do I set the initial value for an "id" column in a MySQL table that start from 1001?

我想做一个插入 "INSERT INTO users (name, email) VALUES ('{$name}', '{$email}')";

不指定 id 列的初始值.

Without specifying the initial value for the id column.

推荐答案

使用这个:

ALTER TABLE users AUTO_INCREMENT=1001;

或者如果您还没有添加 id 列,也添加它

or if you haven't already added an id column, also add it

ALTER TABLE users ADD id INT UNSIGNED NOT NULL AUTO_INCREMENT,
    ADD INDEX (id);

相关文章