Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Now that I told you, click on the check mark. – Hogan Feb 19 '10 at 22:31
@thenu: It's a trap! – OMG Ponies Feb 19 '10 at 22:35
@OMG Ponies - LOL – Hogan Feb 19 '10 at 22:39
@Hogan: Some people sale their souls for points! – Jose Chama Feb 19 '10 at 22:41
@Jose Chama: We've established what Hogan is, it's just a matter of haggling on the price =) – OMG Ponies Feb 19 '10 at 22:47
show 2 more comments

1 Answer

Identity

 CREATE TABLE blah(
     [ID] int IDENTITY PRIMARY KEY
 )
share|improve this answer
+1, IDENTITY (100,5) to start at 100 and increment by 5, but I bet that is the default – KM. Feb 19 '10 at 22:38
Default is seed = 1, increment = 1 ... so equivalent to above is [ID] INT IDENTITY(1,1) - though the PRIMARY KEY part is certainly not a required part of the syntax... you may just as easily want your PK on a column other than the IDENTITY column (as with many things, it depends). – Aaron Bertrand Feb 19 '10 at 22:57
@Aaron: Primary key need was part of the question :D – Hogan Feb 19 '10 at 23:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.