我是靠谱客的博主 美好汽车,最近开发中收集的这篇文章主要介绍SQL Server设置主键自增长列(使用sql语句实现),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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)

最后

以上就是美好汽车为你收集整理的SQL Server设置主键自增长列(使用sql语句实现)的全部内容,希望文章能够帮你解决SQL Server设置主键自增长列(使用sql语句实现)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(95)

评论列表共有 0 条评论

立即
投稿
返回
顶部