【超详细】HIVE 日期函数(当前日期、时间戳转换、前一天日期等)

文章目录

作者:小猪快跑

基础数学&计算数学,从事优化领域5年+,主要研究方向:MIP求解器、整数规划、随机规划、智能优化算法。

如有错误,欢迎指正。如有更好的算法,也欢迎交流!!!------@小猪快跑

相关文献

常量:当前日期、时间戳

返回类型 名称 样例 描述
date current_date current_date = 2024-01-01 返回查询评估开始时的当前日期(从 Hive 1.2.0 开始)。同一查询中的所有current_date调用都返回相同的值。
timestamp current_timestamp current_timestamp = 2024-01-01 00:00:00 返回查询评估开始时的当前时间戳(从 Hive 1.2.0 开始)。同一查询中的所有current_date调用都返回相同的值。

前一天日期、后一天日期

返回类型 名称 样例
pre 2.1.0: string 2.1.0 on: date date_add(date/timestamp/string startdate, tinyint/smallint/int days) date_add('2008-12-31', 1) = 2009-01-01
pre 2.1.0: string 2.1.0 on: date date_sub(date/timestamp/string startdate, tinyint/smallint/int days) date_sub('2008-12-31', 1) = 2008-12-30
hive 复制代码
date_sub(current_date, 1) -- 昨天
date_add(current_date, 1) -- 明天

获取日期中的年、季度、月、周、日、小时、分、秒等

|--------|-------------------------------------------------|-------------------------------------------|-------------|
| 返回类型 | 名称 | 样例 | 描述 |
| int | year(string date) | year("1970-01-01") = 1970 | 年 |
| int | year(string date) | year("1970-01-01 00:00:00") = 1970 | 年 |
| int | quarter(date/timestamp/string) | quarter('2015-04-08') = 2 | 季度 |
| int | month(string date) | month("1970-11-01 00:00:00") = 11 | 月 |
| int | month(string date) | month("1970-11-01") = 11 | 月 |
| int | weekofyear(string date) | weekofyear("1970-11-01 00:00:00") = 44 | 周 |
| int | weekofyear(string date) | weekofyear("1970-11-01") = 44 | 周 |
| int | day(string date) dayofmonth(date) | day("1970-11-01 00:00:00") = 1 | 日 |
| int | day(string date) dayofmonth(date) | day("1970-11-01") = 1 | 日 |
| int | hour(string date) | hour('2009-07-30 12:58:59') = 12 | 小时 |
| int | hour(string date) | hour('12:58:59') = 12 | 小时 |
| int | minute(string date) | | 分 |
| int | second(string date) | | 秒 |
| string | last_day(string date) | last_day('2015-01-14') = 2015-01-31 | 当月最后一天 |
| string | next_day(string start_date, string day_of_week) | next_day('2015-01-14', 'TU') = 2015-01-20 | 给定日期后最近的星期几 |

时间戳转换

时间戳 to 日期

返回类型 名称 样例 描述
string from_unixtime(bigint unixtime[, string pattern]) from_unixtime(0)=1970-01-01 00:00:00 (1970-01-01 00:00:00 UTC)之后多少秒的时间,注意不同时区结果不同

日期 to 时间戳

返回类型 名称 样例 描述
bigint unix_timestamp(string date) unix_timestamp('2009-03-20 11:30:01') = 1237573801 (1970-01-01 00:00:00 UTC)之后多少秒,注意不同时区结果不同
bigint unix_timestamp(string date, string pattern) unix_timestamp('2009-03-20', 'yyyy-MM-dd') = 1237532400 (1970-01-01 00:00:00 UTC)之后多少秒,注意不同时区结果不同 https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html

日期之间月、天数差

返回类型 名称 样例 描述
double months_between(date1, date2) months_between('1997-02-28 10:30:00', '1996-10-30') = 3.94959677 返回日期 date1 和 date2 之间的月数(从 Hive 1.2.0 开始)。如果 date1 晚于 date2,则结果为正数。如果 date1 早于 date2,则结果为负数。 date1 和 date2 类型:timestamp | 'yyyy-MM-dd' | 'yyyy-MM-dd HH:mm:ss'
int datediff(string enddate, string startdate) datediff('2009-03-01', '2009-02-27') = 2
相关推荐
时差9536 小时前
【面试题】Hive 查询:如何查找用户连续三天登录的记录
大数据·数据库·hive·sql·面试·database
苍老流年6 小时前
Hive中各种Join的实现
数据仓库·hive·hadoop
静听山水6 小时前
Hive:UDTF 函数
hive
EDG Zmjjkk7 小时前
Hive 查询(详细实操版)
数据仓库·hive·hadoop
lzhlizihang8 小时前
【Hive sql 面试题】求出各类型专利top 10申请人,以及对应的专利申请数(难)
大数据·hive·sql·面试题
Hsu_kk8 小时前
Hive 查询各类型专利 Top 10 申请人及对应的专利申请数
数据仓库·hive·hadoop
静听山水9 小时前
Hive 的数据存储单元结构
hive
大数据编程之光9 小时前
Hive 查询各类型专利 top10 申请人及专利申请数
大数据·数据仓库·hive·hadoop
杰克逊的日记9 小时前
Hive详解
数据仓库·hive·hadoop
上辈子杀猪这辈子学IT9 小时前
【Zookeeper集群搭建】安装zookeeper、zookeeper集群配置、zookeeper启动与关闭、zookeeper的shell命令操作
linux·hadoop·zookeeper·centos·debian