单行函数:一个input对应一个output,input和output存在一一对应的关系 如lower
组函数:多个input,但是只对应一个output。如 sum()
------------------------------------------------------------------------------------
sql>select min(sal),max(sal),sum(sal),avg(sal) from emp where empno=10;
2、max min :统计日期数字和字符串
sql>select min(hiredate),max(hiredate) from emp;
sql>select min(ename),max(ename) from emp;
3、count:用于结果集进行一个计数
①count(*):统计结果集为空的行
sql>select count(*) from emp;
②count(xxx):不统计结果集为空的行(只统计满足表达式的非空行)
sql>select count(comm) from emp where deptno=30;
sql>select count(comm) from emp;
③count(distinctxxx):distinct-剔除重复的行
sql>select count(distinct deptno) from emp;
4、avg(xxx)求平均值
sql>select avg(sal) from emp;
sql>select avg(comm) from emp;
sql>select avg(nvl(comm,0)) from emp; 统计所有人的平均奖金
5、group by:分组
①单列分组
sql>select avg(sal) from emp group by deptno;
结果集没意义:需要在前面加上列名
sql>select deptno,avg(sal) from emp group by deptno;
②多列分组
先对部门分组,在对相同部门下的相同工作进行分组,在求平均值?
错误示例:
6、having:过滤
①分组之后还是想进行过滤,想要求出部门平均工资大于xxx的
DEPTNO AVG(SAL)
---------- ----------
30 1566.66667
20 2175
10 2916.66667
7、条件表达式
①case
select ename,
case
when deptno=10 then sal
when deptno=20 then 2*sal
when deptno=30 then 3*sal
else sal/2
end new_sal
from emp;
②decode
③只显示10号部门的工资,不是10号部门的用0表示
sql>select case when deptno=10 then sal else 0 endfrom emp;
原文链接:/oracle/211082.html