如何使主键从1000开始?

要使主键从1000开始,您需要更改表并将其设置为auto_increment,值为1000。语法如下-

alter table yourTableName auto_increment=1000;

为了理解上述语法,让我们首先创建一个表。创建表的查询如下-

mysql> create table PrimaryKey1000Demo
   -> (
   -> ProductId int auto_increment,
   -> PRIMARY KEY(ProductId)
   -> );

现在这是将主键更新为从1000开始的查询-

mysql> alter table PrimaryKey1000Demo auto_increment=1000;
Records: 0 Duplicates: 0 Warnings: 0

现在,我们已将起始值更新为从1000开始。现在,我们插入一些记录以检查主键的起始值。插入记录的查询如下-

mysql> insert into PrimaryKey1000Demo values();

mysql> insert into PrimaryKey1000Demo values();

mysql> insert into PrimaryKey1000Demo values();

mysql> insert into PrimaryKey1000Demo values();

使用select语句显示表中的所有记录。查询如下-

mysql> select *from PrimaryKey1000Demo;

以下是显示ProductID的输出,我们的主键从1000开始-

+-----------+
| ProductId |
+-----------+
|      1000 |
|      1001 |
|      1002 |
|      1003 |
+-----------+
4 rows in set (0.00 sec)