MySQL中自增ID起始值修改方法

2022-03-28 17:37:39 字數 397 閱讀 3679

在實際測試工作過程中,有時因為生產環境已有歷史資料原因,需要測試環境資料id從某個值開始遞增,此時,我們需要修改資料庫中自增id起始值,下面以mysql為例:

表名:users;

建表時新增:

create

table users(id int auto_increment primary

key,666);

表已建立,修改:

alter

table users add id int auto_increment primary

key; #將自增欄位設定為primary key

alter

table users auto_increment=

10000;

MySQL中自增ID起始值修改方法

在實際測試工作過程中,有時因為生產環境已有歷史資料原因,需要測試環境資料id從某個值開始遞增,此時,我們需要修改資料庫中自增id起始值,下面以mysql為例 表名 users 建表時新增 create table users id int auto increment primary key,666...

mysql自增ID起始值修改方法

在mysql中很多朋友都認為欄位為auto increment型別自增id值是無法修改,其實這樣理解是錯誤的,下面介紹mysql自增id的起始值修改與設定方法。通常的設定自增字段的方法 建立 時新增 複製 如下 create table table1 id int auto increment pr...

mysql自增列之起始值與步長

1.檢視自增列起始值 show create table t10 檢視建表語句 我們看到中的auto increment 11,代表下一次的自動增長id從11開始,我們可以增加一條資料來驗證一下 我們看到,auto increment 12,所以證明我們的推測是正確的。2.修改自增列起始值 alte...