1SQL批量循环插入数据declare @a int,@b int
2SQL批量循环插入数据set @a=1
3SQL批量循环插入数据set @b=1
4SQL批量循环插入数据while @a<100000
5SQL批量循环插入数据begin
6SQL批量循环插入数据   insert into test_table (news_title,news_content) values(@a,@b)
7SQL批量循环插入数据   set @a=@a+1
8SQL批量循环插入数据   set @b=(@a+1)*5-2
9SQL批量循环插入数据end

相关文章:

  • 2021-09-23
  • 2021-08-10
  • 2022-12-23
  • 2022-12-23
  • 2021-07-24
  • 2022-12-23
  • 2021-05-20
  • 2022-02-21
猜你喜欢
  • 2022-12-23
  • 2021-07-16
  • 2021-06-18
  • 2022-02-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案