排序

一、全局排序(Order By)
Order By:全局排序,一个Reduce
1.使用ORDER BY子句排序
ASC(ascend):升序(默认)
DESC(descend):降序
2.ORDER BY子句在SELECT语句的结尾
3.案例操作
(1)查询员工信息按工资升序排列
select * from emp order by sal;
(2)查询员工信息按工资降序排列
select * from emp order by sal desc;
二、按照别名排序
按照员工薪水的2倍排序
select ename,sal*2 twosal from emp order by twosal;
三、多个列排序
按照部门和工资升序排序
select ename,deptno,sal from emp order by deptno,sal;
四、每个Map Reduce内部排序(Sort By)
Sort By:每个Reduce内部进行排序,对全局结果集来说不是排序。
(1)设置reduce个数
set mapreduce.job.reduces=3
(2)查看设置reduce个数
set mapreduce.job.reduce;
(3)根据部门编号降序查看员工信息
select * from emp sort by empno desc;
(4)将查询结果导入到文件中(按照部门编号降序排序)
insert overwrite local directory '/xx/xx/xx' select * from emp sort by deptno desc;
五、分区排序(Distribute By)
Distribute By:类似MR中的partition,进行分区,结合sort by使用
注意:Hive要求DISTRIBUTE BY语句要写在SORT BY语句之前。
对于distribute by进行测试,一定要分配多个reduce进行处理,否则无法看到distribute by的效果
案例操作
(1)先按照部门编号分区,再按照员工编号降序排序
set mapreduce.job.reduces=3;
insert overwrite local directory '/xx/xx/xx' select * from emp distribute by deptno sort by empno desc;
六、Cluster By
当distribute by和sort by字段相同时,可以使用cluster by方式。
cluster by除了具有distribute by的功能外还兼具sort by 的功能。但是排序只能是升序排序,不能指定排序规则为ASC或者DESC。
(1)以下两种写法等价
select * from emp cluster by deptno;
select * from emp distribute by deptno sort by deptno;

你可能感兴趣的:(排序)