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

sql 使用group by,having,count函数查询表中某字段相同内容的数据

时间:2020-06-28 13:27:11      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:gid   函数   group by   内容   rom   class   style   nbsp   方法   

方法一:

select  n_code from table1(表名) where  n_orgid is not null
                group by n_code,n_orgid
                         having count(n_orgid)>1
 

方法二

select *  from 
        (select count(n_code) asfrom table1(表名) 
                group by n_code,n_orgid) as tt
                                 where c>1;
 

 

sql 使用group by,having,count函数查询表中某字段相同内容的数据

标签:gid   函数   group by   内容   rom   class   style   nbsp   方法   

原文地址:https://www.cnblogs.com/qingjiawen/p/13202039.html

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