更新聚合客户表中指定条件的客户.sql 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[PROCE_UpdateAggregationCustomer]') AND type in (N'P', N'PC'))
  2. DROP PROCEDURE [dbo].[PROCE_UpdateAggregationCustomer]
  3. GO
  4. SET QUOTED_IDENTIFIER ON
  5. GO
  6. -- =============================================
  7. -- Author: 刘超
  8. -- Create date: 2015-07-16
  9. -- Description: 更新聚合客户表中指定条件的客户
  10. -- =============================================
  11. CREATE PROCEDURE [dbo].[PROCE_UpdateAggregationCustomer]
  12. (
  13. @WhereString varchar(2000) =N'', --条件值 为 [GP_OrderNumber]订单号,[GP_CustomerGroupID]客户组ID 字段的值
  14. @ReturnI int output --返回更新记录数
  15. )
  16. AS
  17. BEGIN
  18. DECLARE @M_Cus_CustomerNumber varchar(2000)
  19. DECLARE @GP_CustomerGroupID varchar(2000)
  20. --处理开始点和结束点
  21. delete [tempTB_AggregationCustomer] where len(@WhereString)>0 and (GP_OrderNumber=@WhereString or GP_CustomerGroupID=@WhereString)
  22. insert into [tempTB_AggregationCustomer]
  23. select * from [Vw_AggregationCustomer]
  24. where len(@WhereString)>0 and (GP_OrderNumber=@WhereString or GP_CustomerGroupID=@WhereString)
  25. set @ReturnI=(select count(*) from [tempTB_AggregationCustomer] where GP_OrderNumber=@WhereString or GP_CustomerGroupID=@WhereString)
  26. ---更新group by Cus_Name,M_Cus_CustomerNumber后的客户组临时表--
  27. set @M_Cus_CustomerNumber=(select top 1 M_Cus_CustomerNumber from [tempTB_AggregationCustomer] where GP_OrderNumber=@WhereString or GP_CustomerGroupID=@WhereString)
  28. delete [tempTB_GroupByAggregationCustomer] where M_Cus_CustomerNumber =@M_Cus_CustomerNumber;
  29. set @GP_CustomerGroupID=(select top 1 GP_CustomerGroupID from [tempTB_AggregationCustomer] where GP_OrderNumber=@WhereString or GP_CustomerGroupID=@WhereString)
  30. delete [tempTB_GroupByAggregationCustomer] where GP_CustomerGroupID =@GP_CustomerGroupID;
  31. with t as(
  32. SELECT
  33. max(GP_CustomerGroupID) as GP_CustomerGroupID
  34. from tempTB_AggregationCustomer
  35. where M_Cus_CustomerNumber =@M_Cus_CustomerNumber
  36. group by Cus_Name,M_Cus_CustomerNumber
  37. ),t2 as(
  38. select * from tempTB_AggregationCustomer
  39. where GP_CustomerGroupID in (select GP_CustomerGroupID from t)
  40. )
  41. insert into [tempTB_GroupByAggregationCustomer] select * from t2
  42. -----
  43. END
  44. GO
  45. IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[PROCE_UpdateAggregationCustomerAll]') AND type in (N'P', N'PC'))
  46. DROP PROCEDURE [dbo].[PROCE_UpdateAggregationCustomerAll]
  47. GO
  48. SET QUOTED_IDENTIFIER ON
  49. GO
  50. -- =============================================
  51. -- Author: 刘超
  52. -- Create date: 2015-08-09
  53. -- Description: 更新聚合客户表中所有客户
  54. -- =============================================
  55. CREATE PROCEDURE [dbo].[PROCE_UpdateAggregationCustomerAll]
  56. (
  57. @ReturnI int output --返回更新记录数
  58. )
  59. AS
  60. BEGIN
  61. truncate table [dbo].[tempTB_AggregationCustomer]
  62. insert into [tempTB_AggregationCustomer] select * from [Vw_AggregationCustomer]
  63. truncate table [dbo].[tempTB_GroupByAggregationCustomer]
  64. insert into [tempTB_GroupByAggregationCustomer] select * from [Vw_GroupByAggregationCustomer]
  65. set @ReturnI=(select count(*) from [tempTB_AggregationCustomer])
  66. -----
  67. END
  68. GO