简体   繁体   中英

Customize starting id in SQL Server auto-increment column

I have to start my auto-increment column of my table in SQL Server from 1000. In default it starts from 1. Now I have to customize that.

Is that possible??

I think in create table the syntax is

column_name data_type identity(startingValue(seed), increment)

so that in your case it's

create table table_name ( id int identity(1000 , 1) )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM