修改sql表字段类型:
alter table SYS_FUNC
drop column FUNC_ID
go
alter table SYS_FUNC
add FUNC_ID int identity(1,1) not null
go
修改sql表字段类型:
alter table SYS_FUNC
drop column FUNC_ID
go
alter table SYS_FUNC
add FUNC_ID int identity(1,1) not null
go