Index autoincrement for Microsoft SQL Server 2008 R2

后端 未结 2 428
失恋的感觉
失恋的感觉 2020-12-09 10:27

I created a new table in SQL Server 2008 R2, and i would like that the index is on autoincrement. How to do that? There is no identity data type; i selected int

2条回答
  •  孤城傲影
    2020-12-09 11:11

    In SQL Server, it's not a separate datatype ("autoincrement") - but you can define an INT column to be an IDENTITY.

    How are you creating your table - visual designer or T-SQL script??

    In T-SQL, you would use:

    CREATE TABLE dbo.MyTable(ID INT IDENTITY(1,1) ......
    

    and in the visual table designer, you need to check:

    alt text

    It's an option for a column of type INT - you can define the seed (starting value) and the increment - typically both are set to 1.

提交回复
热议问题