黑马oracle_day01:03.oracle的查询
03.oracle的查询
05.oracle编程
09scott用户介绍
--- scott用户,密码tiger -- 解锁scott用户 alter user scott account unlock; -- 解锁scott用户的密码[重置密码] alter user scott identified by tiger; -- 切换登录到scott用户下
10单行函数
-- 单行函数:作用于一行,返回一个值。
---字符函数 select upper('yes') from dual;--结果YES select lower('YES') from dual;--结果yes
----数值函数 select round(26.16, 1) from dual;---四舍五入,后面的参数表示保留的位数 select round(56.16, -2) from dual;---四舍五入,后面的参数表示保留的位数 select trunc(56.16, 1) from dual;---直接截取,不在看后面位数的数字是否大于5 select mod(10, 3) from dual;---求余数
----日期函数 ----查询出emp表中所有员工入职距离现在几天。 select sysdate-e.hiredate from emp e; ----算出明天此刻 select sysdate+1 from dual; ----查询出emp表中所有员工入职距离现在几月。 select months_between(sysdate,e.hiredate) from emp e; ----查询出emp表中所有员工入职距离现在几年。 select months_between(sysdate,e.hiredate)/12 from emp e; ----查询出emp表中所有员工入职距离现在几周。 select round((sysdate-e.hiredate)/7) from emp e;
----转换函数 ---日期转字符串 select to_char(sysdate, 'yyyy-mm-dd hh:mi:ss') from dual;-- 2019-09-17 10:43:40 select to_char(sysdate, 'fm yyyy-mm-dd hh24:mi:ss') from dual;-- 2019-9-17 10:47:20 ---字符串转日期 select to_date('2018-6-7 16:39:50', 'fm yyyy-mm-dd hh24:mi:ss') from dual;-- 2018/6/7 16:39:50
----通用函数 ---算出emp表中所有员工的年薪 ----奖金里面有null值,如果null值和任意数字做算术运算,结果都是null。 select e.sal*12+nvl(e.comm, 0) from emp e;-- 如果是null就用后面的0代替去计算
11条件表达式
---条件表达式 ---条件表达式的通用写法,mysql和oracle通用 ---给emp表中员工起中文名 select e.ename, case e.ename when 'SMITH' then '曹贼' when 'ALLEN' then '大耳贼' when 'WARD' then '诸葛小儿' --else '无名' end from emp e;
---判断emp表中员工工资,如果高于3000显示高收入,如果高于1500低于3000显示中等收入, -----其余显示低收入 select e.sal, case when e.sal>3000 then '高收入' when e.sal>1500 and e.sal<=3000 then '中等收入' else '低收入' end from emp e;
----oracle中起别名,用双引号 ----oracle专用条件表达式 select e.ename, decode(e.ename, 'SMITH', '曹贼', 'ALLEN', '大耳贼', 'WARD', '诸葛小儿', '无名') "中文名" from emp e;
12多行函数
--多行函数【聚合函数】:作用于多行,返回一个值。 select count(*) from emp;---查询总数量 select sum(sal) from emp;---工资总和 select max(sal) from emp;---最大工资 select min(sal) from emp;---最低工资 select avg(sal) from emp;---平均工资
13分组查询
---分组查询 ---查询出每个部门的平均工资 ---分组查询中,出现在group by后面的原始列,才能出现在select后面 ---没有出现在group by后面的列,想在select后面,必须加上聚合函数。 ---聚合函数有一个特性,可以把多行记录变成一个值。 select e.deptno, avg(e.sal) from emp e group by e.deptno;
---查询出平均工资高于2000的部门信息 select e.deptno, avg(e.sal) asal from emp e group by e.deptno having avg(e.sal)>2000; ---所有条件都不能使用别名来判断。
---查询出每个部门工资高于800的员工的平均工资 select e.deptno, avg(e.sal) asal from emp e where e.sal>800 group by e.deptno; ----where是过滤分组前的数据,having是过滤分组后的数据。 ---表现形式:where必须在group by之前,having是在group by之后。
---查询出每个部门工资高于800的员工的平均工资 ---然后再查询出平均工资高于2000的部门 select e.deptno, avg(e.sal) asal from emp e where e.sal>800 group by e.deptno having avg(e.sal)>2000;
14多表查询中的一些概念
---多表查询中的一些概念 ---笛卡尔积 select * from emp e, dept d; ---等值连接 select * from emp e, dept d where e.deptno=d.deptno; ---内连接 select * from emp e inner join dept d on e.deptno = d.deptno;
---查询出所有部门,以及部门下的员工信息。【外连接】 select * from emp e right join dept d on e.deptno=d.deptno; ---查询所有员工信息,以及员工所属部门 select * from emp e left join dept d on e.deptno=d.deptno;
15自连接概念和练习
---查询出员工姓名,员工领导姓名 ---自连接:自连接其实就是站在不同的角度把一张表看成多张表。 select e1.ename, e2.ename from emp e1, emp e2 where e1.mgr = e2.empno;
------查询出员工姓名,员工部门名称,员工领导姓名,员工领导部门名称 select e1.ename, d1.dname, e2.ename, d2.dname from emp e1, emp e2, dept d1, dept d2 where e1.mgr = e2.empno and e1.deptno=d1.deptno and e2.deptno=d2.deptno;
16子查询
---子查询返回一个值 ---查询出工资和SCOTT一样的员工信息 select * from emp where sal in (select sal from emp where ename = 'SCOTT')
---子查询返回一个集合 ---查询出工资和10号部门任意员工一样的员工信息 select * from emp where sal in (select sal from emp where deptno = 10);
---子查询返回一张表 ---查询出每个部门最低工资,和最低工资员工姓名,和该员工所在部门名称 ---1,先查询出每个部门最低工资 select deptno, min(sal) msal from emp group by deptno; ---2,三表联查,得到最终结果。 select t.deptno, t.msal, e.ename, d.dname from (select deptno, min(sal) msal from emp group by deptno) t, emp e, dept d where t.deptno = e.deptno and t.msal = e.sal and e.deptno = d.deptno;
17分页查询
----oracle中的分页 ---rownum行号:当我们做select操作的时候, --每查询出一行记录,就会在该行上加上一个行号, --行号从1开始,依次递增,不能跳着走。 ----排序操作会影响rownum的顺序 select rownum, e.* from emp e order by e.sal desc ----如果涉及到排序,但是还要使用rownum的话,我们可以再次嵌套查询。 select rownum, t.* from( select rownum, e.* from emp e order by e.sal desc) t; ----emp表工资倒叙排列后,每页五条记录,查询第二页。 ----rownum行号不能写上大于一个正数。 select * from( select rownum rn, tt.* from( select * from emp order by sal desc ) tt where rownum<11 ) where rn>5
====================
end
部分内容来自于学习编程期间收集于网络的免费分享资源和工作后购买的付费内容。
如需获取教程配套的资源文件和一对一专属答疑支持,请加vx:kangmf24联系作者。