订单相关表-将2016时间修改为2015年.sql 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. use [db]
  2. --²éѯ;
  3. select * from dindan where id like '2016%'
  4. select * from dindanjd where id like '2016%'
  5. select * from dindansp where id like '2016%'
  6. select * from dindansp2 where id like '2016%'
  7. select * from dindansp3 where id like '2016%'
  8. select * from dindanbukuan where id like '2016%'
  9. select * from dindanbukuan2 where id like '2016%'
  10. select * from mywork where id like '2016%'
  11. select * from burncdreg where id like '2016%'
  12. select * from photoprint where id like '2016%'
  13. select * from digitalwork where id like '2016%'
  14. select * from client where id like '2016%'
  15. --¸´ÖÆ;
  16. select * into dindan_2015 from dindan where id like '2016%'
  17. select * into dindanjd_2015 from dindanjd where id like '2016%'
  18. select * into dindansp_2015 from dindansp where id like '2016%'
  19. select * into dindansp2_2015 from dindansp2 where id like '2016%'
  20. select * into dindansp3_2015 from dindansp3 where id like '2016%'
  21. select * into dindanbukuan_2015 from dindanbukuan where id like '2016%'
  22. select * into dindanbukuan2_2015 from dindanbukuan2 where id like '2016%'
  23. select * into mywork_2015 from mywork where id like '2016%'
  24. select * into burncdreg_2015 from burncdreg where id like '2016%'
  25. select * into photoprint_2015 from photoprint where id like '2016%'
  26. select * into digitalwork_2015 from digitalwork where id like '2016%'
  27. select * into client_2015 from client where id like '2016%'
  28. IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[dindan_2015]') AND name = N'id')
  29. CREATE UNIQUE NONCLUSTERED INDEX [id] ON [dbo].[dindan_2015]
  30. (
  31. [id] ASC
  32. )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
  33. GO
  34. ALTER TABLE [dbo].[dindanjd_2015] ADD CONSTRAINT PK_dindanjd PRIMARY KEY CLUSTERED
  35. (
  36. id,
  37. name
  38. ) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  39. IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[dindansp_2015]') AND name = N'autoid')
  40. CREATE UNIQUE NONCLUSTERED INDEX [autoid] ON [dbo].[dindansp_2015]
  41. (
  42. [autoid] ASC
  43. )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
  44. GO
  45. IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[dindansp_2015]') AND name = N'spid')
  46. CREATE NONCLUSTERED INDEX [spid] ON [dbo].[dindansp_2015]
  47. (
  48. [spid] ASC,
  49. [id] ASC
  50. )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
  51. GO
  52. --ÐÞ¸Ä;
  53. update dindan_2015 set id = replace(id, '2016', '2015'),time1 = replace(time1, '2016', '2015'),time2 = replace(time2, '2016', '2015'),time4 = replace(time4, '2016', '2015'),time5 = replace(time5, '2016', '2015'),time6 = replace(time6, '2016', '2015')
  54. update dindanjd_2015 set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015'),bookingdate = replace(bookingdate, '2016', '2015')
  55. update dindansp_2015 set id = replace(id, '2016', '2015'),date3 = replace(date3, '2016', '2015'),date4 = replace(date4, '2016', '2015')
  56. update dindansp2_2015 set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015')
  57. update dindansp3_2015 set id = replace(id, '2016', '2015')
  58. update dindanbukuan_2015 set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015')
  59. update dindanbukuan2_2015 set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015')
  60. update client_2015 set id = replace(id, '2016', '2015')
  61. --»Ø²å;
  62. insert into dindan_2015 select * from dindan
  63. insert into dindanjd_2015 select * from dindanjd
  64. insert into dindansp_2015 select * from dindansp
  65. insert into dindansp2_2015 select * from dindansp2
  66. insert into dindansp3_2015 select * from dindansp3
  67. update dindan set id = replace(id, '2016', '2015'),time1 = replace(time1, '2016', '2015'),time2 = replace(time2, '2016', '2015'),time4 = replace(time4, '2016', '2015'),time5 = replace(time5, '2016', '2015'),time6 = replace(time6, '2016', '2015')
  68. update dindanjd set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015'),bookingdate = replace(bookingdate, '2016', '2015')
  69. update dindansp set id = replace(id, '2016', '2015'),date3 = replace(date3, '2016', '2015'),date4 = replace(date4, '2016', '2015')
  70. update dindansp2 set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015')
  71. update dindansp3 set id = replace(id, '2016', '2015')
  72. update dindanbukuan set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015')
  73. update dindanbukuan2 set id = replace(id, '2016', '2015'),date = replace(date, '2016', '2015')
  74. update client set id = replace(id, '2016', '2015')