文件名称:分组函数的嵌套使用-SQL语言基础
文件大小:5.26MB
文件格式:PPT
更新时间:2024-05-15 13:25:00
SQL 基础
分组函数的嵌套使用 * SQL> SELECT max(avg(sal)) 2 FROM emp 3 GROUP BY deptno; MAX(AVG(SAL)) ------------- 2916.6667 显示最大的平均工资. * SELECT max(avg(sal)) FROM emp GROUP BY deptno; Nesting Group Functions Group functions can be nested to a depth of two. The slide example displays the maximum average salary.