标签:问题: 元素 count group by from 计算 数据 tno 模式
问题:查找某个列中值的模式(数学中的模式概念就是对于给定的数据集出现最频繁的元素)。
例如,查找DEPTNO 20中工资模式。例如下列工资:
select sal from emp
where deptno = 20
group by sal
having count(*) >=all (select count(*) from emp
where deptno =20 group by sal);
标签:问题: 元素 count group by from 计算 数据 tno 模式
原文地址:http://www.cnblogs.com/liang545621/p/6802239.html