首页 > 代码库 > Oracle条件查询
Oracle条件查询
--查询各个部门的编号,最高工资,总和,平均工资
--并且按照个部门的总工资进行降序排列
select deptno,max(sal),sum(sal),avg(sal)
from teacher
group by deptno
order by sum(sal) desc
--再增加一个条件 并且 部门人数在10人以上的
select deptno,max(sal),sum(sal),avg(sal)
from teacher
group by deptno
having count(deptno)>20
order by sum(sal) desc
--nvl(E1,E2):如果E1为空,则返回E2,否则返回E1
select nvl(mgrno,0) from teacher
--nvl2(E1,E2,E3):如果E1为空,则返回E3,否则返回E2
select nvl2(mgrno,1000,0) from teacher
--decode(value,表达式1,表达式1对应的值....) 底层就是一个if else if
select decode(mgrno,null,0,2000) from teacher
sql语句的执行顺序
1.from 表
2.where 条件
3.group by 分组 根据列
4.having 分组条件
5.select 01 .列 02.distinct 03.top
6.order by 根据指定的列 进行排序
Oracle条件查询
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。