有时候我们需要想数据中写数据
declare @i int
set@i=1
while @i<30
begin
insert into table(id) values(@i)
set @i=@i+1
end 

点赞(78)

评论列表共有 0 条评论

立即
投稿
返回
顶部