trunc函数可以截取oracle的日期
select trunc(sysdate,'yyyy') from dual;--返回当年第一天
select trunc(sysdate,'mm') from dual; --返回当月第一天
select trunc(sysdate,'dd') from dual;--返回当前年月日
select trunc(sysdate,'d') from dual; --返回当前星期的第一天(星期日)
select trunc(sysdate,'hh') from dual;--返回当前日期截取到小时,分秒补0
select trunc(sysdate,'mi') from dual;--返回当前日期截取到分,秒补0select trunc(sysdate,'Q') from dual; --返回当前季度的第一天
select trunc(sysdate,'month') from dual; --返回当前月份的第一天
select trunc(sysdate,'day') from dual; --返回当前天的第一天
hive 本身也支持trunc时间但是有点垃圾
select 'YEAR' ,trunc('2022-12-13 14:15:16','YEAR') union all
select 'Q' ,trunc('2022-12-13 14:15:16','Q') union all
select 'MM' ,trunc('2022-12-13 14:15:16','MM')注意返回值不保留时分秒格式 因为默认都是00:00:00
但是hive不会这么垃圾,也可以如下函数来达成目的 而且更加的明了
SELECT 'current_timestamp',cast(current_timestamp AS string )
UNION ALL
select 'floor_year',date_format(floor_year(current_timestamp),'yyyy-MM-dd HH:mm:ss')
UNION ALL
select 'floor_quarter',date_format(floor_quarter(current_timestamp),'yyyy-MM-dd HH:mm:ss')
UNION ALL
select 'floor_month',date_format(floor_month(current_timestamp),'yyyy-MM-dd HH:mm:ss')
UNION ALL
select 'floor_day',date_format(floor_day(current_timestamp),'yyyy-MM-dd HH:mm:ss')
UNION ALL
select 'floor_hour',date_format(floor_hour(current_timestamp),'yyyy-MM-dd HH:mm:ss')
UNION ALL
select 'floor_minute',date_format(floor_minute(current_timestamp),'yyyy-MM-dd HH:mm:ss')
注意floor_xx(timestamp) 只能接受timestamp,返回的是varchar
如果你想使用字符串 可以通过 cast('2022-12-12' as timestamp) 然后再接floor函数 或者如下
select date_format(current_date,'yyyy-MM-dd HH:mm:ss'); --返回当前年月日
select date_format(to_date(current_timestamp),'yyyy-MM-dd HH:mm:ss');--返回当前年月日