服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - 直接循环写入数据

直接循环写入数据

2019-10-21 14:54mssql教程网 Sql Server

直接循环写入数据

有时候我们需要想数据中写数据

  1. declare @i int  
  2. set@i=1  
  3. while @i<30  
  4. begin  
  5. insert into table(id) values(@i)  
  6. set @i=@i+1  
  7. end   

延伸 · 阅读

精彩推荐