删除重复记录.sql 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. select sy1.* from dindanjd Sy, dindanjd sy2
  2. --where sy1.id<>sy2.id
  3. --and sy1.id = sy2.id
  4. where sy1.id = sy2.id
  5. and sy1.name = sy2.name
  6. and sy1.date = sy2.date
  7. and sy1.time = sy2.time
  8. and sy1.waiter1 = sy2.waiter1
  9. and sy1.waiter2 = sy2.waiter2
  10. and sy1.status = sy2.status
  11. and sy1.waiter12 = sy2.waiter12
  12. and sy1.waiter22 = sy2.waiter22
  13. and sy1.bookingdate = sy2.bookingdate
  14. and sy1.dress = sy2.dress
  15. and sy1.bz = sy2.bz
  16. and sy1.clerk = sy2.clerk
  17. and sy1.inputtime = sy2.inputtime
  18. and sy1.branch = sy2.branch
  19. /*
  20. 删除重复记录的SQL语句
  21. 1.用rowid方法
  22. 2.用group by方法
  23. 3.用distinct方法
  24. 1。用rowid方法
  25. 据据oracle带的rowid属性,进行判断,是否存在重复,语句如下:
  26. 查数据:
  27. select * from table1 a where rowid !=(select max(rowid)
  28. from table1 b where a.name1=b.name1 and a.name2=b.name2......)
  29. 删数据:
  30. delete from table1 a where rowid !=(select max(rowid)
  31. from table1 b where a.name1=b.name1 and a.name2=b.name2......)
  32. 2.group by方法
  33. 查数据:
  34. select count(num), max(name) from student --列出重复的记录数,并列出他的name属性
  35. group by num
  36. having count(num) >1 --按num分组后找出表中num列重复,即出现次数大于一次
  37. 删数据:
  38. delete from student
  39. group by num
  40. having count(num) >1
  41. 这样的话就把所有重复的都删除了。
  42. 3.用distinct方法 -对于小的表比较有用
  43. create table table_new as select distinct * from table1 minux
  44. truncate table table1;
  45. insert into table1 select * from table_new;
  46. 查询及删除重复记录的方法大全
  47. 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断
  48. select * from people
  49. where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
  50. 2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录
  51. delete from people
  52. where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
  53. and rowid not in (select min(rowid) from people group by peopleId having count(peopleId )>1)
  54. 3、查找表中多余的重复记录(多个字段)
  55. select * from vitae a
  56. where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
  57. 4、删除表中多余的重复记录(多个字段),只留有rowid最小的记录
  58. delete from vitae a
  59. where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
  60. and rowid not in (select min(rowid) from vitae group by peopleId,seq having count(*)>1)
  61. 5、查找表中多余的重复记录(多个字段),不包含rowid最小的记录
  62. select * from vitae a
  63. where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
  64. and rowid not in (select min(rowid) from vitae group by peopleId,seq having count(*)>1)
  65. (二) 比方说 在A表中存在一个字段“name”,
  66. 而且不同记录之间的“name”值有可能会相同,
  67. 现在就是需要查询出在该表中的各记录之间,“name”值存在重复的项;
  68. Select Name,Count(*) From A Group By Name Having Count(*) > 1
  69. 如果还查性别也相同大则如下:
  70. Select Name,sex,Count(*) From A Group By Name,sex Having Count(*) > 1
  71. (三) 方法一
  72. declare @max integer,@id integer
  73. declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) >; 1
  74. open cur_rows
  75. fetch cur_rows into @id,@max
  76. while @@fetch_status=0
  77. begin
  78. select @max = @max -1
  79. set rowcount @max
  80. delete from 表名 where 主字段 = @id
  81. fetch cur_rows into @id,@max
  82. end
  83. close cur_rows
  84. set rowcount 0
  85. 方法二
  86. "重复记录"有两个意义上的重复记录,一是完全重复的记录,也即所有字段均重复的记录,二是部分关键字段重复的记录,比如Name字段重复,而其他字段不一定重复或都重复可以忽略。
  87. 1、对于第一种重复,比较容易解决,使用
  88. select distinct * from tableName
  89. 就可以得到无重复记录的结果集。
  90. 如果该表需要删除重复的记录(重复记录保留1条),可以按以下方法删除
  91. select distinct * into #Tmp from tableName
  92. drop table tableName
  93. select * into tableName from #Tmp
  94. drop table #Tmp
  95. 发生这种重复的原因是表设计不周产生的,增加唯一索引列即可解决。
  96. 2、这类重复问题通常要求保留重复记录中的第一条记录,操作方法如下
  97. 假设有重复的字段为Name,Address,要求得到这两个字段唯一的结果集
  98. select identity(int,1,1) as autoID, * into #Tmp from tableName
  99. select min(autoID) as autoID into #Tmp2 from #Tmp group by Name,autoID
  100. select * from #Tmp where autoID in(select autoID from #tmp2)
  101. 最后一个select即得到了Name,Address不重复的结果集(但多了一个autoID字段,实际写时可以写在select子句中省去此列)
  102. (四) 查询重复
  103. select * from tablename where id in (
  104. select id from tablename
  105. group by id
  106. having count(id) > 1)
  107. */