用sql语句插入多条数据我想往一个表中插入500条相同的数据,请问代码怎么写?[解决办法]declare @i intset @i=1while @i<=500begin---你的语句insert into TB(...)values(...)set @i=@i+1end