前言:
今天看官们对“oracle排序升序”大致比较关心,兄弟们都想要学习一些“oracle排序升序”的相关知识。那么小编也在网摘上网罗了一些关于“oracle排序升序””的相关资讯,希望各位老铁们能喜欢,你们快快来了解一下吧!--查询全部
select * from emp;
--模糊条件查询 %:0-n个字符 _:一个字符
select * from emp where ename like '%s%';
select * from emp where ename like 's%';
select * from emp where ename like '__s%';
--范围查询beteen and:包括边界值
select * from emp where sal between '' and ''
select * from emp where sal ≥'' and sal≤''
select * from emp where sal in ()
select * from emp where sal not in ()
---排序:asc 升序 desc 降序
order by 默认升序
多个列排序时,首先按第一个列排序,再依次在前一列排序的基础上进行排序
select * from emp order by sal
select * from emp order by sal ,deptno
----分组
分组函数: max() min() avg() 按单列分组
count():一般为count(*) 表示查询表中全部记录
select max(sal) from emp
select min(sal) from emp
select avg(sal) from emp
select count(*) from emp
---group by:手工分组
select max(sal) from emp group by deptno
标签: #oracle排序升序