oracle:数值型函数,日期函数,转换函数,组函数,分组,排序,
发布时间:2021-03-14 00:30:45 所属栏目:站长百科 来源:网络整理
导读:-- 数值型函数 -- 四舍五入round(x,y)对x保留y为小数 -- 四舍五入数值 select round ( 23.225 ) from dual; -- 输出结果:24 -- 四舍五入(小数点后保留1位小数)数值 select round ( 23.652 , 1 ) from dual; -- 输出结果:23.7 -- 四舍五入(四舍五入到小
--数值型函数 --四舍五入round(x,y)对x保留y为小数 --四舍五入数值 select round(23.225) from dual; --输出结果:24 --四舍五入(小数点后保留1位小数)数值 select round(23.652,1)from dual; --输出结果:23.7 --四舍五入(四舍五入到小数点前1位小数)数值 select round(25.2466,-1)from dual; --输出结果:30 -- 返回x按精度y截取后的值 --未四舍五入的值 select trunc(23.621) from dual; --输出结果:23 select trunc(14.562,1)from dual; --输出结果:14.5 select trunc(15.25,-1) from dual; --输出结果:10 -- mod(x,y)求余数 select mod(9,2)from dual; --输出结果:1 -- ceil 向上取整 select ceil(1.8)from dual; --输出结果:2 -- floor 向下取整 select floor(1.8)from dual; --输出结果:1 ----------------------------------------------------- --------------------------------日期函数 -- 返回系统当前时间 select sysdate from dual; -- 返回当前会话时区中的当前日期 select current_date from dual; -- 添加月数(在当前时间上加一个月) select add_months(sysdate,1)from dual; -- 返回两个时间相差的月数 select months_between(sysdate,add_months(sysdate,1))from dual; -- 需求:查询工作年限在30年以上 select e.ename,e.hiredate from emp e where months_between(sysdate,e.hiredate)/12>30; -- 返回date所在月份最后的一天 select last_day(sysdate)from dual; -- next_day(date1,week) 返回date1下周星期几的日期 select next_day(sysdate,‘星期一‘) from dual; -- 查询会话的环境参数(我的是china) select * from nls_session_parameters; -- 日期计算(oracle的时间计算单位为天) --明天的此时 select sysdate+1 from dual; --前天的此时 select sysdate-2 from dual; ----------------------------------组函数 --组函数把多行数据经过运算后返回单个值。也称聚合函数。 -- 求公司雇员的数量 --count 字段的总数(一般指定主键,指定某个字段时,null会被忽略不计,但*会计) select count(*) from emp e; select count(e.empno) from emp e; select count(1) from emp e; -- avg:对多个记录的某个字段求平均值 -- 需求:求底薪的平均值 select avg(e.sal) from emp e; -- max/min需求:求雇员的最高薪资/最低薪资 select max(e.sal),min(e.sal),avg(e.sal) from emp e; -- sum(总数) 需求:求公司一个月的员工基本开销 select sum(e.sal) from emp e; --------------------------------注意: --[1] 组函数或聚合函数是对一个数据集(表数据、查询出来的表、分组的表)进行聚合。 --[2] 聚合函数对字段是null的值进行忽略。count(*) --[3] max/min 适合任意数据类型,sum/avg 只适用于数值类型。 --聚合函数的结果可以作为其他查询条件。 ----------------------------------------分组(group by) /*在处理统计或聚合数据时,很多时候需要对数据进行分组 语法 select field1,。。。 from tableName group by field1[,field2,…] 按照field1[,…] 分组,字段值相同的记录分到一组。*/ ----------------------[1]分组和聚合函数 -- 需求:统计部门10的人数 select count(1) from emp e where e.deptno=10; -- 需求:求各个部门的人数 select e.deptno,count(e.ename) from emp e group by e.deptno; group by e.deptno; -- 需求:求各个部门的平均薪资 select e.deptno,avg(e.sal) from emp e group by e.deptno; -- 需求:求各个部门的月收入平均值 select e.deptno,avg(e.sal+nvl(e.comm,0)) from emp e group by e.deptno; -- ----------特例:按照津贴分组(所以null统一分为一组) select e.comm,count(1) from emp e group by e.comm; -----------------------------having --如果需要对分组的数据进行条件过滤,必须使用having!!! -- group by having -- 查询部门平均薪资大于3000的部门 select e.deptno from emp e group by e.deptno having avg(e.sal)>3000; -- 查询部门薪资大于3000的雇员按部门分组的平均薪资 select e.deptno,avg(e.sal) from emp e where e.sal>3000 group by e.deptno; --注意: --[1] Where过滤行,having过滤分组。 --[2] Having支持所有where操作符。 --对数据进行分组后,select语句的字段值只能是分组字段或者聚合函数。 ---------------------排序 (order by) /*排序 (order by)(select field1,。。。 from tablename order by field1,field2 对数据集进行排序,先按field1排序,如果field1排序相同,按照field2排序,依次类推。 -asc 升序,默认 -desc 降序*/ -- order by -- 需求:按雇员薪资排序 select e.ename,e.sal from emp e order by e.sal desc; -----------order by 一般都是最后执行。 --薪资大于1200的雇员 所在部门的平均薪资大于1500的部门,按照平均薪资升序排序 select e.deptno,avg(e.sal) from emp e where e.sal>1200 group by e.deptno having avg(e.sal)>1500 order by avg(e.sal) asc ; ---------order by 既可以用于数据行(记录)排序。也可以对分组的结果进行排序,此时需要聚合函数配合。 --Select 语言的执行顺序 /*1.读取from子句中的基本表、视图的数据,[执行笛卡尔积操作]。 2.选取满足where子句中给出的条件表达式的元组 3.按group子句中指定列的值分组,同时提取满足Having子句中组条件表达式的那些组 4.按select子句中给出的列名或列表达式求值输出 5.Order by子句对输出的目标表进行排序。 from -> where -> group by -> having -> select -> order by */ --交集、全集、并集、差集 -- 并集:把集合A的结果和集合B的结果合并,并去掉重复的记录。 select e.* from emp e where e.deptno = 10 union select e.* from emp e where e.deptno = 20; -- 有重复记录取并集 select e.* from emp e where e.deptno = 10 or e.deptno = 20 union select e.* from emp e where e.deptno = 20; -- 全集:: 把集合A的结果和集合B的结果合并,保留重复记录 select e.* from emp e where e.deptno = 10 or e.deptno = 20 union all select e.* from emp e where e.deptno = 10; --交集: 把集合A的结果和集合B的结果取相同部门 select e.* from emp e where e.deptno = 10 or e.deptno = 20 intersect select e.* from emp e where e.deptno = 10; --差集: 在集合A的结果中去掉集合B的结果 (A-B) select e.* from emp e where e.deptno = 10 or e.deptno = 20 minus select e.* from emp e where e.deptno = 10; -- 笛卡尔积(两张表合在一起,新表行数等于两张表行数相乘【第一张表的每行加一次第二章表所有行】) select * from emp,dept -- 等值连接 -- 需求:查询雇员的部门名称 select e.ename,d.dname from emp e,dept d where e.deptno=d.deptno -- 不等值连接 -- 查询每个雇员的薪资等级 select e.ename,e.sal,s.grade from emp e,salgrade s where e.sal between s.losal and s.hisal --外连接 --左外连接:左边的表作为主表,右边表作为从表,主表数据都显示,从表数据没有,用null填充,用+号表示。 -- 需求:查询所有部门的雇员 select * from dept d,emp e where d.deptno=e.deptno(+) -- 右外连接 --右外连接: 右边的表作为主表,左边表作为从表,主表数据都显示,从表数据没有,用null填充,用+号表示。 select * from emp e,dept d where e.deptno(+) = d.deptno; --自连接 --一个表自身连接自身时,称为自连接。自连接以不同的视角看待同一张表。 -- 查询每个雇员的上级领导 select e.ename "雇员",nvl(m.ename,‘boss‘) "领导" from emp e,emp m where e.mgr = m.empno(+) /*多于两张表的查询 如果有多个表参与查询,先把t1xt2笛卡尔积得到一个大表T1,再把T1xt3笛卡尔积得到一个另外的大表T2,依次类推。 所有的多表查询最终都是两种表的查询。*/ (编辑:威海站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |