Hive中關於日期函式使用
1.時間戳函式
日期轉時間戳:從1970-01-01 00:00:00 UTC到指定時間的秒數
獲得當前時區的UNIX時間戳: select unix_timestamp(); 1533716607
將指定的時間轉為UNIX時間戳 :select unix_timestamp('2018-08-08 16:22:01'); 1533716521
將指定的時間轉為UNIX時間戳: select unix_timestamp('2018-08-08 16:22:01','yyyy-MM-dd HH:mm:ss'); 1533716521
select unix_timestamp('2018-08-08 16:22:01','yyyyMMdd HH:mm:ss'); 1533716521 --將指定的時間轉為UNIX時間戳
2.時間戳轉日期
select from_unixtime(1533716521); 2018-08-08 16:22:01
select from_unixtime(1533716521,'yyyyMMdd'); 20180808
select from_unixtime(1533716521,'yyyy-MM-dd HH:mm:ss'); 2018-08-08 16:22:01
獲取系統當前時間 :
select from_unixtime(unix_timestamp(),'yyyy-MM-dd HH:mm:ss'); 2018-08-08 16:28:21
日期轉換為其他格式的日期:
select from_unixtime(unix_timestamp('2018-08-08 16:28:21',yyyy-MM-dd HH:mm:ss'),'yyyyMMdd'); 20180808
3.獲取當前日期: current_date
select current_date ;2018-08-08
4.日期時間轉日期:to_date(string timestamp)
select to_date('2018-08-08 17:12:00') ;2018-08-08
5.計算兩個日期之間的天數: datediff
select datediff('2018-08-08','2018-08-01') ; 7
6.日期增加和減少: date_add/date_sub(string startdate,int days)
select date_add('2018-08-04',1) , date_sub('2018-08-04',1) ; 2018-08-05 2018-08-03
7.其他日期函式
查詢當前系統時間(包括毫秒數):` current_timestamp;
查詢當月第幾天: dayofmonth(current_date);
月末: last_day(current_date)
當月第1天: date_sub(current_date,dayofmonth(current_date)-1)
年:year(date)
月:month(date)
日:day(date)
小時:hour(date)
分:minute(date)
秒:second(date)
第幾周:weekofyear(date)
下個月第1天: `add_months(date_sub(current_date,dayofmonth(current_date)-1),1)