我该怎么改变mysql中的起始id号

时间:2017-03-11 22:09:18

标签: mysql database

我想将id的初始数量从1更改为2000。 我的表:

id  value     type 
1   e         photo     
2   f         text
3   g         photo 

这就是我想要的结果:

id      value     type 
2001    e         photo     
2002    f         text
2003    g         photo 

1 个答案:

答案 0 :(得分:2)

以下是更改表格中自动增量值的查询:

ALTER TABLE my_table AUTO_INCREMENT=2000;

如果您只想为所有ID添加2000:

UPDATE my_table SET id = id + 2000;

但要做到这一点并不是很干净。