if exists(select * from sys.objects where name='a')    
drop table a
go  
 create table a
 (id int not null identity  (1,1))
 
go
select * from a
--请问如何将一个表中只有一列(并且是标示列)的表一次性加入200行