declare @count int
    declare @OrderID nvarchar(50)
 declare  @VariationOrderTable table(IndexID int identity(1,1),ID nvarchar(50))
 declare @index int
 insert into @VariationOrderTable

 
 set @index=1;
DECLARE @subject NVARCHAR(360);  
 while(@index<=@count)
 begin

  set @index=@index+1;
 end

相关文章:

  • 2022-12-23
  • 2021-12-23
  • 2022-12-23
  • 2022-02-09
  • 2021-12-22
  • 2021-07-17
  • 2021-08-16
猜你喜欢
  • 2022-12-23
  • 2022-01-12
  • 2022-12-23
  • 2022-03-06
  • 2022-12-23
相关资源
相似解决方案