SQL Server中怎么设置主键自增长

40次阅读
没有评论

共计 689 个字符,预计需要花费 2 分钟才能阅读完成。

自动写代码机器人,免费开通

SQL Server 中怎么设置主键自增长,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面丸趣 TV 小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

1. 新建一数据表,里面有字段 id,将 id 设为为主键复制代码 代码如下:
create table tb(id int,constraint pkid primary key (id)) create table tb(id int primary key)

2. 新建一数据表,里面有字段 id,将 id 设为主键且自动编号复制代码 代码如下:
create table tb(id int identity(1,1),constraint pkid primary key (id)) create table tb(id int identity(1,1) primary key )

3. 已经建好一数据表,里面有字段 id,将 id 设为主键复制代码 代码如下:
alter table tb alter column id int not null alter table tb add constraint pkid primary key (id)

4. 删除主键复制代码 代码如下:
Declare @Pk varChar(100); Select @Pk=Name from sysobjects where Parent_Obj=OBJECT_ID(tb) and xtype= PK if @Pk is not null exec(Alter table tb Drop + @Pk)

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注丸趣 TV 行业资讯频道,感谢您对丸趣 TV 的支持。

向 AI 问一下细节

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-04发表,共计689字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)