1. 準備數據表test2數組
create table test2( a int, b int, c int, d int, e int);
2. 準備2條數據函數
insert into table test2 values(5,1,3,8,6); insert into table test2 values(6,2,5,11,9);
查詢顯示以下:spa
3. 如今要求出a,b,c,d,e 5個字段中每行的最大值和最小值。3d
雖然hive中有min和max,可是那是求某列字段的最小值和最大值,在這裏行不通。接下來使用hive中的數組排序方法來求解。code
思路: 先將字段合併到數組裏面,而後使用數組排序函數。blog
select sort_array(array(a,b,c,d,e)) from test2;
結果顯示以下:排序
這樣,第一個就是最小值,最後一個就是最大值。完整代碼以下:table
select arr[0] as min_val, arr[4] as max_val from( select sort_array(array(a,b,c,d,e)) arr from test2 )a;
最終結果以下:class