sql server set default value equal to auto increment

Solutions on MaxInterview for sql server set default value equal to auto increment by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "sql server set default value equal to auto increment"
Abigail
22 Oct 2019
1dbcc checkident ('t', reseed, 100);
2
Neele
18 Aug 2018
1create table t (
2    id int identity(100, 1) primary key,
3    . . .
4);
5