码迷,mamicode.com
首页 > 数据库 > 详细

sql 查询表格中多列重复的数据并显示该表的其他列

时间:2019-02-22 16:43:09      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:函数   多列   font   分组函数   nbsp   group by   from   情况下   and   

我们一般情况下通过分组函数group by来查询重复的列

SELECT [column1],[column2] FROM [dbo].[Table] where 1=1) R group by [column1],[column2] having count(*) > 1

但是查询出的结果不能显示该表的其他列

想要查询一张表中有多个列重复的数据且也要显示该表的其他列

  SELECT M.*
    FROM  [dbo].[Table] M,
  (SELECT *
    FROM (SELECT [column1],[column2] FROM [dbo].[Table] where 1=1) R group by [column1],[column2] having count(*) > 1) M1 
  where M.[column1]=M1.[column1] AND M.[column2]=M1.[column2]

 

sql 查询表格中多列重复的数据并显示该表的其他列

标签:函数   多列   font   分组函数   nbsp   group by   from   情况下   and   

原文地址:https://www.cnblogs.com/ruanraun/p/groupby.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!