數據庫Oracle與Mysql語法對比:組函數的嵌套使用

組函數的嵌套使用 例:求各部門平均工資的最高值:mysql Oracl: SELECT max(avg(sal)) FROM emp GROUP BY deptno; Mysql: select max(avg_sal) from (select avg(sal) as avg_sal from emp group by deptno) as A; ps:由於mysql總組
相關文章
相關標籤/搜索