自动增量选项
我需要将数据库行中特定列的自动递增选项设置为 true,以便每次插入新行时该值都会递增。
我该怎么做?
I need to set the auto increment option for a particular column in a row of a database to be true so that the value increments each time a new row is inserted.
How do i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 TSQL 中使用 IDENTITY 属性
You can use IDENTITY property in TSQL
试试这个
数据库列本身必须指定为标识...
Identity Specific
树Is Identity
的值更改为是
身份增量
现在将为1
,如有必要请更改它Try this
The database column itself must be specified to be an identity...
Identity Specification
treeIs Identity
toYes
Identity Increment
will now be1
, change it if necessary