use EMIS
go
alter table t_course_reg -- 指定表名
add constraint PK_t_course_reg
primary key clustered (reg_id)
go
SQL server 数据库添加主键代码
最新推荐文章于 2025-03-09 11:05:43 发布
use EMIS
go
alter table t_course_reg -- 指定表名
add constraint PK_t_course_reg
primary key clustered (reg_id)
go