dindansp全部ok但dindan不ok的处理.sql 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. use ddf_jg
  2. declare @id int;
  3. declare @order nvarchar(50);
  4. declare @count int;
  5. declare @maxcount int;
  6. declare @OKCount int;
  7. declare @status nvarchar(10);
  8. with subtbl
  9. as
  10. (
  11. select id, count(*) as cot from dindansp where spid is not null and spid <> '' group by id
  12. )select id as [order],cot into #tempall from subtbl
  13. --3.获取指定字段的不重复记录,过滤掉不完全重复的记录;
  14. select identity(int,1,1) as id, * into #tempresult from #tempall
  15. select @maxcount = count(id) from #tempresult
  16. while @maxcount > 0
  17. begin
  18. -- 获取指定自增列记录;
  19. select @order = [order], @count = cot from #tempresult where id = @maxcount
  20. -- 获取
  21. select @OKCount = count(status2) from dindansp where id = @order and status2 = 'OK' and spid is not null and spid <> ''
  22. -- 获取订单取件状态;
  23. select @status = status3 from dindan where id = @order
  24. if (@status <> 'OK' and @count = @OKCount)
  25. begin
  26. update dindan set status3 = 'OK' where id = @order
  27. print '更新订单' + @order
  28. print @count
  29. print @maxcount
  30. print @OKCount
  31. end
  32. set @maxcount = @maxcount -1
  33. end
  34. drop table #tempall
  35. drop table #tempresult