欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQLServer如何向数据库表中添加主键列?

程序员文章站 2022-04-12 20:17:33
SQL Server 数据库,向已设置主键的数据库表中插入新一列,并设为主键。 首先从基础知识开始看, 建表: create table 表名 ( 字段名1 i...

SQL Server 数据库,向已设置主键的数据库表中插入新一列,并设为主键。

首先从基础知识开始看,

建表:

create table 表名 ( 
   字段名1 int not null,    …………,
   [constraint 约束名] primary key (字段名1, …)
)

对已有表添加主键约束

alter table 表名 [add constraint 约束名] primary key(字段名1 ,… )

删除主键

alert table 表名 drop constraint 约束名

SQL Server 数据库,向已设置主键的数据库表中插入新一列,并设为主键。

SQL 语句如下

if not exists (select 1 from syscolumns where name = '字段名1' and id = (select id from sysobjects where name = '表名' and type = 'U')) 
begin 
  alter table 表名 add 字段名1 varchar(4) NOT NULL default '0';
  alter table 表名 drop constraint 约束名; 	
  alter table 表名 add constraint 约束名 primary key (字段名1, 字段名2, 字段名3);
end

约束名一般命名为 PK_表名