Hive常用函数_16个时间日期处理

在Hive中,常用的时间处理函数包括但不限于以下几种:

1. current_date(): 返回当前日期,不包含时间部分
c 复制代码
SELECT current_date();
-- Output: 2024-09-15
2. current_timestamp(): 返回当前时间戳,包含日期和时间部分
c 复制代码
SELECT current_timestamp();
-- Output: 2024-09-15 12:34:56
3. year(date): 提取日期中的年份部分
c 复制代码
SELECT year('2024-09-15');
-- Output: 2024
4. month(date): 提取日期中的月份部分
c 复制代码
SELECT month('2024-09-15');
-- Output: 9
5. day(date): 提取日期中的天数部分
c 复制代码
SELECT day('2024-09-15');
-- Output: 15
6. date_format(date, pattern): 将日期按照指定的模式格式化输出
c 复制代码
SELECT date_format('2024-09-15', 'yyyy-MM-dd');
-- Output: '2024-09-15'
7. from_unixtime(unix_time, format): 将Unix时间戳转换为指定格式的日期时间
c 复制代码
SELECT from_unixtime(1731692800, 'yyyy-MM-dd HH:mm:ss');
-- Output: '2024-09-15 00:00:00'
8. unix_timestamp(): 返回当前时间的Unix时间戳
c 复制代码
SELECT unix_timestamp();
-- Output: 1711537815
9. datediff(endDate, startDate): 计算两个日期之间的天数差
c 复制代码
SELECT datediff('2024-09-20', '2024-09-15');
-- Output: 5
10. date_add(date, days): 将指定天数添加到日期
c 复制代码
SELECT date_add('2024-09-15', 3);
-- Output: '2024-09-18'
11. date_sub(date, days): 从日期中减去指定天数
c 复制代码
SELECT date_sub('2024-09-15', 2);
-- Output: '2024-09-13'
12. last_day(date): 返回给定日期所在月份的最后一天
c 复制代码
SELECT last_day('2024-09-15');
-- Output: '2024-09-30'
13. to_date(timestamp): 将时间戳转换为日期
c 复制代码
SELECT to_date('2024-09-15 12:34:56');
-- Output: '2024-09-15'
14. hour(timestamp): 提取时间戳中的小时部分
c 复制代码
SELECT hour('2024-09-15 12:34:56');
-- Output: 12
15. minute(timestamp): 提取时间戳中的分钟部分
c 复制代码
SELECT minute('2024-09-15 12:34:56');
-- Output: 34
16. second(timestamp): 提取时间戳中的秒部分
c 复制代码
SELECT second('2024-09-15 12:34:56');
-- Output: 56

这些函数可用于处理日期和时间数据,进行日期的提取、格式化、计算以及转换等操作。根据实际需求,选择合适的时间处理函数可以方便地对日期时间数据进行处理和分析。

相关推荐
TTBIGDATA4 小时前
【Knox编译】xmlsectool 依赖缺失问题解析
大数据·hadoop·ambari·hdp·kerberos·knox·bigtop
天远Date Lab4 小时前
Python实战:对接天远数据手机号码归属地API,实现精准用户分群与本地化运营
大数据·开发语言·python
TechubNews5 小时前
2026 年观察名单:基于 a16z「重大构想」,详解稳定币、RWA 及 AI Agent 等 8 大流行趋势
大数据·人工智能·区块链
laocooon5238578865 小时前
mysql,100个题目。
数据库·sql·mysql
BlockWay5 小时前
WEEX 成为 LALIGA 西甲联赛香港及台湾地区官方区域合作伙伴
大数据·人工智能·安全
培培说证7 小时前
2026 大专大数据与会计专业核心证书推荐什么
大数据
sensen_kiss8 小时前
INT303 Big Data Analysis 大数据分析 Pt.11 模型选择和词向量(Word Embeddings)
大数据·数据挖掘·数据分析
代码方舟8 小时前
Java后端实战:构建基于天远手机号码归属地核验的金融级风控模块
java·大数据·开发语言·金融
Dxy12393102168 小时前
Elasticsearch 8.13.4 条件修改 DSL 语句详解
大数据·elasticsearch·搜索引擎
Honeyeagle8 小时前
移动式多合一气体检测仪在有限空间作业中的技术实践与安全价值
大数据