是否“身份”?在 sql server 中使用已在同一个表中使用了两次
sql server 中使用的“身份”是否已在同一个表中使用两次。
:我需要插入一些记录集,其标识列从 0,1,2.... 开始
,当我再次插入另一组记录时,标识必须以 0,1,2.. 开头。
例如 使用身份种子来实现这一点的任何可能性。
whether the 'identity' used in sql server has been used twice inside same table.
ex: i need to insert some set of records with the identity column starting from 0,1,2....
and when i insert some another set of records again the identity must start with 0,1,2..
is there is any possiblity to achieve that using the identity seed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 dbcc checkident 重置身份种子,例如:
这将打印:
You can use
dbcc checkident
to reset the identity seed, like:This prints: