目前有一个已经存在的表
字段1 字段2 字段3
现在想新增一个字段ID自动增长。不知是否可行?
一定要用sql语句生成,因为这张表也是后台动态生成的
当然可以加咯
alter table 表名 add 字段ID 数据类型;
alter table 表名
add id int identity;