dindanjd过滤掉完全重复和不完全重复记录 - 不含2014.sql 1003 B

123456789101112131415161718192021222324252627282930313233343536
  1. use db
  2. --0.备份当前db的dindanjd表到dindanjd_back中;
  3. select * into [db].[dbo].[dindanjd_back] from [db].[dbo].[dindanjd]
  4. go
  5. --1.将db的dindanjd表全部记录插入到#tempall表中;
  6. select * into #tempall from [db].[dbo].[dindanjd]
  7. go
  8. --2.过滤掉完全重复的记录;
  9. select distinct * into #tempdis from #tempall
  10. go
  11. drop table #tempall
  12. go
  13. --3.获取指定字段的不重复记录,过滤掉不完全重复的记录;
  14. select identity(int,1,1) as autoid, * into #temp1 from #tempdis
  15. select min(autoid) as autoid into #temp2 from #temp1 group by id,name
  16. select [id],[name],[date],[time],[waiter1],[waiter2],[status],[waiter12],[waiter22],[bookingdate],[dress],[bz],[clerk],[inputtime],[branch]
  17. into [db].[dbo].[dindanjd#] from #temp1 where autoid in(select autoid from #temp2) order by id
  18. go
  19. --4.将过滤好的记录重新插入原表;
  20. drop table #tempdis
  21. drop table #temp1
  22. drop table #temp2
  23. truncate table [db].[dbo].[dindanjd]
  24. go
  25. insert into [db].[dbo].[dindanjd] select * from [db].[dbo].[dindanjd#]
  26. go
  27. drop table [db].[dbo].[dindanjd#]
  28. go
  29. --5.结束;