hive时间函数

一、随机示例(想到哪里写哪里)

1.系统时间函数

查询

sql 复制代码
select 
     current_timestamp --当前格式化时间
    ,current_date      --当前格式化日期
    ,unix_timestamp()  --当前unix时间戳

结果:

2.时间函数转换

查询

sql 复制代码
--将时间戳转化为格式化时间
select 
     from_unixtime(1725865044)
    ,from_unixtime(1725865044,'yyyy-MM-dd')
    ,from_unixtime(1725865044,'yyyy-MM')
    ,from_unixtime(1725865044,'dd')

结果

查询

sql 复制代码
--时间格式化为日期
select to_date('2024-09-09 14:57:24')

结果

查询

sql 复制代码
--日期格式化
select 
     date_format('2024-09-09 14:57:24','yyyy-MM-dd')
    ,date_format('2024-09-09','yyyy-MM')
    ,date_format('2024-09-09','yyyy')

结果

3.时间函数

查询

sql 复制代码
select 
     year(current_date)        --年
    ,quarter(current_date)     --季度
    ,month(current_date)       --月
    ,day(current_date)         --日
    ,hour(current_timestamp)   --时
    ,minute(current_timestamp) --分
    ,second(current_timestamp) --秒

结果

相关推荐
学计算机的睿智大学生5 分钟前
Hadoop集群搭建
大数据·hadoop·分布式
ProtonBase2 小时前
如何从 0 到 1 ,打造全新一代分布式数据架构
java·网络·数据库·数据仓库·分布式·云原生·架构
清平乐的技术专栏13 小时前
Hive SQL 查询所有函数
hive·hadoop·sql
节点。csn15 小时前
Hadoop yarn安装
大数据·hadoop·分布式
不惑_15 小时前
小白入门 · 腾讯云轻量服务器部署 Hadoop 3.3.6
服务器·hadoop·腾讯云
csding1115 小时前
写入hive metastore报问题Permission denied: user=hadoop,inode=“/user/hive”
数据仓库·hive·hadoop
NiNg_1_23416 小时前
基于Hadoop的数据清洗
大数据·hadoop·分布式
筒栗子20 小时前
复习打卡大数据篇——Hadoop HDFS 01
大数据·hadoop·hdfs
谷莠子9051 天前
hadoop实验之创业有感
hadoop·docker·团队开发