Hive:greatest和least函数
max是取一列中的最大值
greatest是取多列的最大值
greatest函数
基本用法:
- greatest(col_a, col_b, …, col_n)比较n个column的大小返回最大值;
- 若column中有null,返回null;
- 若某个column中字段类型是string,而其他column字段类型是int/double/float,返回null;
select greatest(-1, 0, 5, 8) --8
select greatest(-1, 0, 5, 8, null) --null
select greatest(-1, 0, 5, 8, "dfsf") --null
select greatest("2020-02-26","2020-02-23","2020-02-22") --2020-02-26
select greatest("2020-02-26 20:02:11","2020-02-23 20:02:11","2020-02-22 20:02:11") --2020-02-26 20:02:11
least函数
语法与greatest函数相同,只是取多列的最小值。
————————————————
版权声明:本文为CSDN博主「浊酒南街」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_43597208/article/details/119837962