VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > sql语句 >
  • sql语句大全之直接循环写入数据

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

相关教程