介绍
有时我们为了测试方便,会去除主键和添加主键,我们可以用下面的SQL语句进行修改
例
下面给user表的id字段添加主键
ALTER TABLE user ADD PRIMARY KEY (id);下面给user表的id字段移除主键
alter table user modify id varchar(255)或
alter ta…
1.添加关键字 not null 属性
alter table tmp_table
alter column tmp_key varchar(3) not null
2.查询主键
exec sp_helpconstraint Ntmp_table
3.删除主键
alter table tmp_table
drop constraint [PK_tmp_table]
4.新增主键
alter table tmp_table
add constraint …