sql中修改字段名类型

2024年12月02日 16:09
有2个网友回答
网友(1):

--identity(1,1)只能加在新建的列上,已存在的不能加。可以先删除原来的列,再新加。
alter table buka_biao
drop column id
go
alter table buka_biao
add id int identity(1,1) not null
go

网友(2):

在identity 前面加个int