位置:首页 > 软件操作教程 > 数据分析 > SQL Server > 问题详情

SQL操作应用——SQL SERVER中直接循环写入数据

提问人:ylm发布时间:2020-09-28

declare @i int
set @i=1
while @i<30
begin
    insert into test (userid) values(@i)
    set @i=@i+1
end

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部