How can INSERT INTO a table 300 times within a loop in SQL?

后端 未结 5 600
半阙折子戏
半阙折子戏 2021-02-02 06:35

I would like to insert a value retrieved from a counter in SQL and repeat it 300 times.

Something like:

DECLARE @Counter = 0;

-- BEGIN Loop 
    SET @Co         


        
5条回答
  •  南笙
    南笙 (楼主)
    2021-02-02 06:58

    In ssms we can use GO to execute same statement

    Edit This mean if you put

     some query
    
     GO n
    

    Some query will be executed n times

提交回复
热议问题