singleincomemoney过滤掉完全重复和不完全重复记录.sql 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. 申明:此脚本禁用,因为[singleincomemoney]与[singleincome]的id必须相同的,即singleincome的id相当于是[singleincomemoney]的外键作用
  3. */
  4. --0.备份当前db的[singleincomemoney]表到singleincomemoney_back
  5. select [id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd]
  6. into [db].[dbo].[singleincomemoney_back] from [db].[dbo].[singleincomemoney]
  7. go
  8. --1.将2014和db的dindnasp3表的全部记录插入到#tempall中;
  9. select [id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd]
  10. into #tempall from [db].[dbo].[singleincomemoney]
  11. go
  12. insert into #tempall
  13. select [id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd]
  14. from [2014].[dbo].[singleincomemoney]
  15. go
  16. --2.过滤掉#tempall中完全重复的记录到#tempdis中;
  17. select distinct * into #tempdis from #tempall
  18. go
  19. drop table #tempall
  20. go
  21. --3.获取指定字段的不重复记录,过滤掉不完全重复的记录;
  22. select identity(int,1,1) as autoid, * into #temp1 from #tempdis
  23. select min(autoid) as autoid into #temp2 from #temp1 group by [id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd]
  24. go
  25. select [id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd]
  26. into [db].[dbo].[singleincomemoney#] from #temp1 where autoid in(select autoid from #temp2) order by [name]
  27. go
  28. --4.将过滤好的记录重新插入原表;
  29. drop table [db].[dbo].[singleincomemoney]
  30. go
  31. use db
  32. CREATE TABLE [dbo].[singleincomemoney](
  33. [id] [nvarchar](50) NULL,
  34. [money] [nvarchar](50) NULL,
  35. [date] [nvarchar](50) NULL,
  36. [clerk] [nvarchar](50) NULL,
  37. [paytype] [nvarchar](50) NULL,
  38. [autoid] [int] IDENTITY(1,1) NOT NULL,
  39. [financecheck] [nvarchar](10) NULL,
  40. [time] [nvarchar](50) NULL,
  41. [jdd] [nvarchar](50) NULL
  42. ) ON [PRIMARY]
  43. go
  44. insert into [db].[dbo].[singleincomemoney]([id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd])
  45. select [id],[money],[date],[clerk],[paytype],[financecheck],[time],[jdd] from [db].[dbo].[singleincomemoney#]
  46. go
  47. drop table #tempdis
  48. drop table #temp1
  49. drop table #temp2
  50. drop table [db].[dbo].[singleincomemoney#]
  51. go
  52. --5.结束