欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sqlserver 修改主键为自增

程序员文章站 2022-03-16 23:49:55
...

alter table tt  drop constraint  PK__BS_CAS_U__3213E83F612AD0EB ;

alter table tt drop column  id ;

alter table tt add id int PRIMARY key  identity(1,1)