Possible Duplicate:
Auto-increment primary key in SQL tables
I am working at the moment with SQL Express 2008 and C#.
In my application, I save some data in the table “buchung” in my database. Well, in this table I need a sequence that starts with 1 and if I save new data, the id should increase.
To my surprise I can´t find anything about this on google.
How can I do this? Can you help me?
have you looked into auto-increment with seed as 1 and increment by 1 …
hope this helps .