如何在 MySQL 中设置初始值和自增?
如何设置 MySQL 表中从 1001 开始的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);
相关文章