订单报表双击记录对话框空白处理方法.sql 620 B

1234567891011121314
  1. use [db]
  2. declare @Myid nvarchar(50) -- 要获取的订单号;
  3. declare @Myname1 nvarchar(50) -- 要获取的顾客姓名1;
  4. declare @Myname2 nvarchar(50) -- 要获取的顾客姓名2;
  5. declare @MyCount int -- 要处理的订单总数;
  6. -- 查询出要处理的订单总数;
  7. select @MyCount=count(id) from dindan where id not in(select id from client)
  8. -- 循环处理要处理的订单;
  9. while @MyCount > 0 begin
  10. select top 1 percent @Myid=id,@Myname1=name1,@Myname2=name2 from dindan where id not in(select id from client)
  11. insert into client(id,name1,name2)values(@Myid,@Myname1,@Myname2)
  12. select @MyCount=count(id) from dindan where id not in(select id from client)
  13. end