alter table 表名 alter column 主键列名 主键类型 not null;
alter table 表名 add constraint 主键别名(pk_列名) primary key(主键列名);
SQLserver添加主键
最新推荐文章于 2024-09-23 14:11:06 发布
alter table 表名 alter column 主键列名 主键类型 not null;
alter table 表名 add constraint 主键别名(pk_列名) primary key(主键列名);