Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto increment keyword in sql 2005

I need to know what keyword v should use for autoincrement in the table with primary key in sql 2005

like image 883
thenu Avatar asked Feb 18 '26 22:02

thenu


1 Answers

Identity

 CREATE TABLE blah(
     [ID] int IDENTITY PRIMARY KEY
 )
like image 68
Hogan Avatar answered Feb 21 '26 13:02

Hogan