alter table 表名 drop constraint 主键名
修改主键:
alter table 表名 add constraint 主键名 primary key (column1,column2,....,column)
alter table t1 drop column c1
alter table t1 add column c1int identity
如果没有 其他表 引用这个表的主键
那么 可以 直接修改:
update ta set id = xxx where id = yyy
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)