大数据之Hive:greatest和least函数

Posted 浊酒南街

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大数据之Hive:greatest和least函数相关的知识,希望对你有一定的参考价值。

背景介绍

在工作开发中遇到取两列值中最大的值,当时首先想到的是max函数,因为在java中经常有类似的比较两个数值大小的情况,后来意识到max是取一列中的最大值,查询其他资料得知需要用到greatest函数,特意把greatest函数和least函数的简单用法总结如下:

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函数

基本用法:

least(col_a, col_b, …, col_n)比较n个column的大小返回最小值;
若column中有null,返回null,
若某个column中字段类型是string,而其他column字段类型是int/double/float,返回null;

简单示例

select least(-1, 0, 5, 8) --  -1
select least(-1, 0, 5, 8, null) --null
select least(-1, 0, 5, 8, "dfsf") --null
select least("2020-02-26","2020-02-23","2020-02-22") --2020-02-22
select least("2020-02-26 20:02:11","2020-02-23 20:02:11","2020-02-22 20:02:11") --2020-02-22 20:02:11

实战

需求:

有两个字段,第一个字段是creat_time,第二个字段是update_time,现在的需求是如果两列字段有一个为空则取另一列字段的值,如果两列的值均不为空,则取较大的值;

case 
when creat_time is null and update_time is not null  then update_time
when creat_time is not null and update_time is  null  then creat_time
when creat_time is not null and update_time is not  null then greatest(creat_time,update_time)
else null 
end new_time

参考:https://blog.csdn.net/weixin_38750084/article/details/97788821

以上是关于大数据之Hive:greatest和least函数的主要内容,如果未能解决你的问题,请参考以下文章

大数据框架对比:HadoopStormSamzaSpark和Flink--容错机制(ACK,RDD,基于log和状态快照),消息处理at least once,exactly once两个是关键

MySQL greatest()和least()函数与MAX()和MIN()函数

mysql least函数

MySQL# 用户权限操作查询的同时更新一张表greatest()和least()函数日期时间操作函数解决主键自动增长2Navicat查看数据库密码

mysql greatest函数

大数据技术之Hive函数压缩和存储