delete tablename where id=2
alter table tablename
drop column id
go
alte table tablename
add id int identity(1,1)
go
变为4就不用删除id字段,再insert后,id就变为4就可以了