修改订单日期给展会使用.sql 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. use db
  2. /*
  3. -- 声明变量;
  4. declare @bYear bit -- 是否修改年份;
  5. declare @bMonth bit -- 是否修改月份;
  6. declare @nYear int -- 要修改的年份(所有年加nYear个年);
  7. declare @nMonth int -- 要修改的月份(所有月加nMonth个月);
  8. declare @StartDate Datetime -- 开始日期;
  9. declare @EndofDate Datetime -- 结束日期;
  10. declare @StrStartDate nvarchar(50) -- 字符串日期;
  11. declare @StrEndofDate nvarchar(50) -- 字符串日期;
  12. declare @OrdStartDate nvarchar(50) -- 订单开始;
  13. declare @OrdEndofDate nvarchar(50) -- 订单结束;
  14. declare @StrTempStartDate nvarchar(50) -- 临时开始日期;
  15. declare @StrTempEndofDate nvarchar(50) -- 临时结束日期;
  16. declare @StartTempDate Datetime -- 临时开始日期;
  17. declare @EndofTempDate Datetime -- 临时结束日期;
  18. declare @curso cursor -- 游标;
  19. declare @ord_num nvarchar(50) -- 订单号;
  20. -- 初始化变量值;
  21. Set @bYear = 1
  22. Set @bMonth = 1
  23. Set @nYear = 1
  24. Set @nMonth = 1
  25. Set @StartDate = '2016-01-01'
  26. Set @EndofDate = '2016-05-01'
  27. -- 将日期转换成日期字符串;
  28. Set @StrStartDate = CONVERT(nvarchar(50), @StartDate, 23) print @StrStartDate
  29. Set @StrEndofDate = CONVERT(nvarchar(50), @EndofDate, 23) print @StrEndofDate
  30. Set @OrdStartDate = CONVERT(nvarchar(50), @StartDate, 112) print @OrdStartDate
  31. Set @OrdEndofDate = CONVERT(nvarchar(50), @EndofDate, 112) print @OrdEndofDate
  32. -- 查询出所有符合要求的记录;
  33. select * into #temp_client from client where id >= @OrdStartDate and id <= @OrdEndofDate
  34. delete from client where id >= @OrdStartDate and id <= @OrdEndofDate
  35. if @bYear = 'true'
  36. begin
  37. -- 修改订单号;
  38. Set @StartTempDate = dateadd(m,12*@nYear,@StartDate) print @StartTempDate
  39. Set @EndofTempDate = dateadd(m,12*@nYear,@EndofDate) print @EndofTempDate
  40. update #temp_client set id = replace(id, year(@StartDate), year(@StartTempDate)), time3 = replace(time3, year(@StartDate), year(@StartTempDate))
  41. end
  42. if @bMonth = 'true'
  43. begin
  44. if @bYear = 'true'
  45. begin
  46. Set @StartTempDate = dateadd(m,@nMonth + 12*@nYear,@StartDate) print @StartTempDate
  47. Set @EndofTempDate = dateadd(m,@nMonth + 12*@nYear,@EndofDate) print @EndofTempDate
  48. end
  49. else
  50. begin
  51. Set @StartTempDate = dateadd(m,@nMonth,@StartDate) print @StartTempDate
  52. Set @EndofTempDate = dateadd(m,@nMonth,@EndofDate) print @EndofTempDate
  53. end
  54. update #temp_client set id = replace(id, year(@StartDate) + '-' + month(@StartDate), year(@StartTempDate) + '-' + month(@StartTempDate)), time3 = replace(time3, year(@StartDate), year(@StartTempDate))
  55. end
  56. select * into #temp_dindan from dindan where id >= @OrdStartDate and id <= @OrdEndofDate
  57. delete from dindan where id >= @OrdStartDate and id <= @OrdEndofDate
  58. select * into #temp_dindanjd from dindanjd where id >= @OrdStartDate and id <= @OrdEndofDate
  59. delete from dindanjd where id >= @OrdStartDate and id <= @OrdEndofDate
  60. select * into #temp_dindansp from dindansp where id >= @OrdStartDate and id <= @OrdEndofDate
  61. delete from dindansp where id >= @OrdStartDate and id <= @OrdEndofDate
  62. select * into #temp_dindansp2 from dindansp2 where id >= @OrdStartDate and id <= @OrdEndofDate
  63. delete from dindansp2 where id >= @OrdStartDate and id <= @OrdEndofDate
  64. select * into #temp_dindansp3 from dindansp3 where id >= @OrdStartDate and id <= @OrdEndofDate
  65. delete from dindansp3 where id >= @OrdStartDate and id <= @OrdEndofDate
  66. select * into #temp_dindanbukuan from dindanbukuan where id >= @OrdStartDate and id <= @OrdEndofDate
  67. delete from dindanbukuan where id >= @OrdStartDate and id <= @OrdEndofDate
  68. select * into #temp_dindanbukuan2 from dindanbukuan2 where id >= @OrdStartDate and id <= @OrdEndofDate
  69. delete from dindanbukuan2 where id >= @OrdStartDate and id <= @OrdEndofDate
  70. select * into #temp_mywork from mywork where id >= @OrdStartDate and id <= @OrdEndofDate
  71. delete from mywork where id >= @OrdStartDate and id <= @OrdEndofDate
  72. select * into #temp_burncdreg from burncdreg where id >= @OrdStartDate and id <= @OrdEndofDate
  73. delete from burncdreg where id >= @OrdStartDate and id <= @OrdEndofDate
  74. select * into #temp_photoprint from photoprint where id >= @OrdStartDate and id <= @OrdEndofDate
  75. delete from photoprint where id >= @OrdStartDate and id <= @OrdEndofDate
  76. select * into #temp_digitalwork from digitalwork where id >= @OrdStartDate and id <= @OrdEndofDate
  77. delete from digitalwork where id >= @OrdStartDate and id <= @OrdEndofDate
  78. select * into #temp_singleincome from singleincome where id >= @OrdStartDate and id <= @OrdEndofDate
  79. delete from singleincome where id >= @OrdStartDate and id <= @OrdEndofDate
  80. select * into #temp_singleincomemoney from singleincomemoney where id >= @OrdStartDate and id <= @OrdEndofDate
  81. delete from singleincomemoney where id >= @OrdStartDate and id <= @OrdEndofDate
  82. select * from #temp_dindan order by id
  83. -- 删除所有临时表;
  84. drop table #temp_client
  85. drop table #temp_dindan
  86. drop table #temp_dindanjd
  87. drop table #temp_dindansp
  88. drop table #temp_dindansp2
  89. drop table #temp_dindansp3
  90. drop table #temp_dindanbukuan
  91. drop table #temp_dindanbukuan2
  92. drop table #temp_mywork
  93. drop table #temp_burncdreg
  94. drop table #temp_photoprint
  95. drop table #temp_digitalwork
  96. drop table #temp_singleincome
  97. drop table #temp_singleincomemoney
  98. */
  99. ---------------------------------
  100. use db
  101. -- 声明变量;
  102. declare @bYear bit -- 是否修改年份;
  103. declare @bMonth bit -- 是否修改月份;
  104. declare @nYear int -- 要修改的年份(所有年加nYear个年);
  105. declare @nMonth int -- 要修改的月份(所有月加nMonth个月);
  106. declare @StartDate Datetime -- 开始日期;
  107. declare @EndofDate Datetime -- 结束日期;
  108. declare @StrStartDate nvarchar(50) -- 字符串日期;
  109. declare @StrEndofDate nvarchar(50) -- 字符串日期;
  110. declare @OrdStartDate nvarchar(50) -- 订单开始;
  111. declare @OrdEndofDate nvarchar(50) -- 订单结束;
  112. declare @StrTempStartDate nvarchar(50) -- 临时开始日期;
  113. declare @StrTempEndofDate nvarchar(50) -- 临时结束日期;
  114. declare @StartTempDate Datetime -- 临时开始日期;
  115. declare @EndofTempDate Datetime -- 临时结束日期;
  116. --declare @cursor cursor -- 游标;
  117. declare @ord_num nvarchar(50) -- 订单号;
  118. declare @ord_year nvarchar(50) -- 订单年;
  119. declare @ord_month nvarchar(50) -- 订单月;
  120. declare @ord_day nvarchar(50) -- 订单日;
  121. declare @ord_temp nvarchar(50) -- 临时订单;
  122. -- 初始化变量值;
  123. Set @bYear = 1
  124. Set @bMonth = 1
  125. Set @nYear = 1
  126. Set @nMonth = 1
  127. Set @StartDate = '2016-01-01'
  128. Set @EndofDate = '2016-05-01'
  129. -- 将日期转换成日期字符串;
  130. Set @StrStartDate = CONVERT(nvarchar(50), @StartDate, 23) --print @StrStartDate
  131. Set @StrEndofDate = CONVERT(nvarchar(50), @EndofDate, 23) --print @StrEndofDate
  132. Set @OrdStartDate = CONVERT(nvarchar(50), @StartDate, 112) --print @OrdStartDate
  133. Set @OrdEndofDate = CONVERT(nvarchar(50), @EndofDate, 112) --print @OrdEndofDate
  134. -- 查询出所有符合要求的记录;
  135. select * into #temp_client from client where id >= @OrdStartDate and id <= @OrdEndofDate
  136. --delete from client where id >= @OrdStartDate and id <= @OrdEndofDate
  137. print ''
  138. print 'goto year'
  139. if @bYear = 'true' and @bMonth = 'true'
  140. begin
  141. -- 修改订单号;
  142. Set @StartTempDate = dateadd(m,@nMonth + 12*@nYear,@StartDate) --print @StartTempDate
  143. Set @EndofTempDate = dateadd(m,@nMonth + 12*@nYear,@EndofDate) --print @EndofTempDate
  144. declare cursor1 cursor for select id from client order by id desc
  145. -- 打开游标;
  146. open cursor1
  147. -- 读取第一条数据,并将id存入@ord_num中;
  148. fetch next from cursor1 into @ord_num
  149. while @@FETCH_STATUS = 0
  150. begin
  151. print 'ord:' + @ord_num
  152. -- 订单号前4位,中2位,后2位;
  153. select @ord_year = left(@ord_num,4) print @ord_year
  154. select @ord_month = substring(@ord_num, 5, 2) print @ord_month
  155. select @ord_day = substring(@ord_num, 7, 2) print @ord_day
  156. Set @ord_temp = @ord_year + convert(nvarchar, convert(int,@ord_month) + @nMonth) + @ord_day print @ord_temp
  157. update #temp_client set id = replace(id, year(@StartDate), year(@StartTempDate)), time3 = replace(time3, year(@StartDate), year(@StartTempDate)) where id = @ord_num
  158. fetch next from cursor1 into @ord_num
  159. end
  160. close cursor1
  161. end
  162. else if @bYear = 'true'
  163. begin
  164. print 'a'
  165. end
  166. else if @bMonth = 'true'
  167. begin
  168. print 'a'
  169. end
  170. select * from #temp_client
  171. drop table #temp_client
  172. --select * from client order by id desc