如: create table >先执行:
alter table 表名
alter column 列名1 int not null
再执行:
alter table 表名 add constraint PK_主键约束 primary key (列名1)
执行第一句前提是表中的“列名1”列没有空值才可以。
例如:
alter table testtab alter column testid int not null
alter table testtab add constraint PrimaryKey primary key (testid)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)