-
1111查看全部
-
group by使用查看全部
-
分组数据查看全部
-
分组函数会自动忽略空值:select count(*),count(comm) from emp; nvl函数使分组函数无法忽略空值:select count(*),count(nvl(comm,0)) from emp;查看全部
-
分组函数会自动忽略空值查看全部
-
wm_concat(列名)行转列 select deptno 部门号,wm_concat(ename) 部门中员工的姓名 from emp group by deptno; 按照部门号分组,将相同部门号的员工以逗号分隔的形式展示到一行中查看全部
-
wm_concat函数的使用查看全部
-
selelt avg(工资列),sum(工资列),max(工资列),min(工资列)from emp(工资表); //查询工资表里面的平均工资,和,最大值,最小值<br> select count( 部门) from emp;//查询部门里面的值的个数<br> select count(distinct 部门) from emp;//查询不重复的个数<br> <br> host cls 清除屏幕上的文字查看全部
-
distinct查看全部
-
常用分组函数: avg:平均数 sum:求和 min:最小值 max:最大值 count:组中包含数据的个数 wm_concat:行转列查看全部
-
1111查看全部
-
分组函数查看全部
-
自连接 核心 通过别名 将同一张表视为多张表查看全部
-
select d.depton 部门号, d.dname 部门名称,count(e.empno) 人数 from emp e,dept d where e.depton=d.depton group by d.depton ,d.dname查看全部
-
host cls 清除屏幕上的文字查看全部
举报
0/150
提交
取消