监控查询.sql 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. declare @days int
  2. set @days = 1
  3. -- 1.查找已订单,但x天未拍照的订单;
  4. select * from dindan where
  5. status <> 'OK' and -- 拍照状态;
  6. datediff(dd,time1,getdate()) >= @days
  7. -- 2.查找已拍照,但x天未初修的订单;
  8. select * from dindan where
  9. status = 'OK' and -- 拍照状态;
  10. [status4] <> 'OK' and -- 初修状态;
  11. datediff(dd,time1,getdate()) >= @days
  12. -- 3.查找已初修,但x天未选片的订单;
  13. select * from dindan where
  14. status = 'OK' and -- 拍照状态;
  15. [status4] = 'OK' and -- 初修状态;
  16. [status2] <> 'OK' and -- 选片状态;
  17. datediff(dd,time1,getdate()) >= @days
  18. -- 4.查找已选片,但x天未精修的订单;
  19. select * from dindan where
  20. status = 'OK' and -- 拍照状态;
  21. [status4] = 'OK' and -- 初修状态;
  22. [status2] = 'OK' and -- 选片状态;
  23. [status6] <> 'OK' and -- 精修状态;
  24. datediff(dd,time1,getdate()) >= @days
  25. -- 5.查找已精修,但x天未设计的订单;
  26. select * from dindan where
  27. status = 'OK' and -- 拍照状态;
  28. [status4] = 'OK' and -- 初修状态;
  29. [status2] = 'OK' and -- 选片状态;
  30. [status6] = 'OK' and -- 精修状态;
  31. [status5] <> 'OK' and -- 设计状态;
  32. datediff(dd,time1,getdate()) >= @days
  33. -- 5.查找已发片,但x天未回件的订单;
  34. select * from dindan where
  35. [status3] <> 'OK' and -- 取件状态;
  36. datediff(dd,time1,getdate()) >= @days
  37. -- 已发送的订单;
  38. select * from dindansp where [status3] is not null and [status3] <> ''
  39. -- 已完成的订单;
  40. select * from dindansp where [status1] = 'OK'
  41. -- 已取件的商品;
  42. select * from dindansp where [status2] = 'OK' and [status1] = 'OK'
  43. -- 6.查看已回件,但x天未取件的订单;
  44. select * from dindan where
  45. [status3] <> 'OK' and -- 取件状态;
  46. datediff(dd,time1,getdate()) >= @days