登录 注册
当前位置:主页 > 资源下载 > SQL语言基础中的分组函数嵌套使用

SQL语言基础中的分组函数嵌套使用

  • 更新:2024-07-07 11:38:02
  • 大小:5.26MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Informix - 数据库
  • 格式:PPT

资源介绍

分组函数的嵌套使用 * 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.