请问在SQL SERVER中如何增加一列后如;整型以后自动增值1,2,.. 问题点数:100、回复次数:2Top
identity(1,1)Top
alter table Table1 add iID int identity(1, 1) goTop