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

后端 未结 5 596
半阙折子戏
半阙折子戏 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 07:20

    You may try it like this:

    DECLARE @i int = 0
    WHILE @i < 300 
    BEGIN
        SET @i = @i + 1
        /* your code*/
    END
    

提交回复
热议问题