Microsoft SQL Server 2008 R2 的索引自动增量
我在 SQL Server 2008 R2 中创建了一个新表,我希望索引是自动增量的。 怎么做呢?没有身份数据类型;我选择了整数
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 SQL Server 中,它不是单独的数据类型(“自动增量”) - 但您可以将
INT
列定义为IDENTITY
。您如何创建表 - 可视化设计器还是 T-SQL 脚本?
在 T-SQL 中,您将使用:
在可视表设计器中,您需要检查:
这是一个选项对于 INT 类型的列 - 您可以定义种子(起始值)和增量 - 通常两者都设置为 1。
In SQL Server, it's not a separate datatype ("autoincrement") - but you can define an
INT
column to be anIDENTITY
.How are you creating your table - visual designer or T-SQL script??
In T-SQL, you would use:
and in the visual table designer, you need to check:
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.
如果您的表定义是这样的,
请将其更改为,
这将创建一个标识列,其 id 以 1 开头,并在插入表中的每条记录时不断增加 1(即步长)。
If your table definition is like this,
change it to,
This will create an identity column which starts id with 1 and keeps increasing it by one(i.e. step) as each record in the table is inserted.