有时候需要检查DataBase里面是不是存在重复的数据,那么比较常用的就是通过Group By来进行分组,然后Having出来,如下:
select Room from tb_ImportData where Room in(select Room from tb_ImportData group by Room having COUNT(1)>=2)
本文共 178 字,大约阅读时间需要 1 分钟。
有时候需要检查DataBase里面是不是存在重复的数据,那么比较常用的就是通过Group By来进行分组,然后Having出来,如下:
select Room from tb_ImportData where Room in(select Room from tb_ImportData group by Room having COUNT(1)>=2)
转载地址:http://hrkya.baihongyu.com/