是否“身份”?在 sql server 中使用已在同一个表中使用了两次

发布于 2024-08-23 11:51:43 字数 150 浏览 6 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毅然前行 2024-08-30 11:51:43

您可以使用 dbcc checkident 重置身份种子,例如:

if object_id('IdentityTest') is not null
    drop table IdentityTest
create table IdentityTest (id int identity, name varchar(30))
go
insert into IdentityTest (name) values ('Jeff')
insert into IdentityTest (name) values ('Joel')
DBCC CHECKIDENT ('IdentityTest', RESEED, 0)
insert into IdentityTest (name) values ('Julia')
insert into IdentityTest (name) values ('Christine')
go
select * from IdentityTest 

这将打印:

1    Jeff
2    Joel
1    Julia
2    Christine

You can use dbcc checkident to reset the identity seed, like:

if object_id('IdentityTest') is not null
    drop table IdentityTest
create table IdentityTest (id int identity, name varchar(30))
go
insert into IdentityTest (name) values ('Jeff')
insert into IdentityTest (name) values ('Joel')
DBCC CHECKIDENT ('IdentityTest', RESEED, 0)
insert into IdentityTest (name) values ('Julia')
insert into IdentityTest (name) values ('Christine')
go
select * from IdentityTest 

This prints:

1    Jeff
2    Joel
1    Julia
2    Christine
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文