dindansp3过滤掉完全重复和不完全重复记录.sql 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --0.备份当前db的dindansp3表到dindansp3_back
  2. select [id],[spid],[name],[count]
  3. into [db].[dbo].[dindansp3_back] from [db].[dbo].[dindansp3]
  4. go
  5. --1.将2014和db的dindnasp3表的全部记录插入到#tempall中;
  6. select [id],[spid],[name],[count]
  7. into #tempall from [db].[dbo].[dindansp3]
  8. go
  9. insert into #tempall
  10. select [id],[spid],[name],[count] from [2014].[dbo].[dindansp3]
  11. go
  12. --2.过滤掉#tempall中完全重复的记录到#tempdis中;
  13. select distinct * into #tempdis from #tempall
  14. go
  15. drop table #tempall
  16. go
  17. --3.获取指定字段的不重复记录,过滤掉不完全重复的记录;
  18. select identity(int,1,1) as autoid, * into #temp1 from #tempdis
  19. select min(autoid) as autoid into #temp2 from #temp1 group by [id],[spid],[name],[count]
  20. select [id],[spid],[name],[count]
  21. into [db].[dbo].[dindansp3#] from #temp1 where autoid in(select autoid from #temp2) order by id
  22. go
  23. --4.将过滤好的记录重新插入原表;
  24. truncate table [db].[dbo].[dindansp3]
  25. go
  26. insert into [db].[dbo].[dindansp3]([id],[spid],[name],[count])
  27. select [id],[spid],[name],[count] from [db].[dbo].[dindansp3#]
  28. go
  29. drop table #tempdis
  30. drop table #temp1
  31. drop table #temp2
  32. drop table [db].[dbo].[dindansp3#]
  33. go
  34. --5.结束