小編給大家分享一下hive時間日期函數怎么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
成都創新互聯主要從事網站建設、成都網站建設、網頁設計、企業做網站、公司建網站等業務。立足成都服務東源,10多年網站建設經驗,價格優惠、服務專業,歡迎來電咨詢建站服務:028-86922220
1、hive取得當前日期時間:
1.1) 取得當前日期:
select current_date();
1.2) 取得當前日期時間:
select current_timestamp();
1.3) hive取得當前時間戳:
select unix_timestamp();
1.4) 時間戳轉日期:
select from_unixtime(1517725479,'yyyy-MM-dd HH:dd:ss');
1.5) 日期轉unix時間戳:
select to_nuix_timestamp('2017-01-01 12:12:12','yyyy-MM-dd HH:dd:ss');
1.6) hive取得當前時間:
select from_unixtime(unix_timestamp(),'yyyy-MM-dd HH:dd:ss');
2、hive自動計算其他日期(昨天,今天):
hive中日期加減函數:date_add(start_date,num_days)
2.1) 取得昨天日期:
select date_add(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),-1);
select date_sub(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),1);
2.2) 取得明天日期:
select date_add(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),1);
select date_sub(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),-1);
3、hive取得兩個日期之間差值(差值為天數):
datediff(date1,date2):date1大于date2,返回值為正,否則,返回值為負。
select datediff(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),date_add(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),-10));
select datediff(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),date_add(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),10));
4、字符串轉時間(字符串必須為:yyyy-MM-dd格式)
select to_date('2017-01-01 12:12:12');
5、日期、時間戳、字符串類型格式化輸出標準時間格式:
select date_format(current_timestamp(),'yyyy-MM-dd HH:mm:ss');
select date_format(current_date(),'yyyyMMdd');
select date_format('2017-01-01','yyyy-MM-dd HH:mm:ss'); --字符串必須滿足yyyy-MM-dd格式
6、utc時間轉換:
select from_utc_timestamp(current_timestamp(),8);
select to_utc_timestamp(current_timestamp(),8);
看完了這篇文章,相信你對“hive時間日期函數怎么用”有了一定的了解,如果想了解更多相關知識,歡迎關注創新互聯行業資訊頻道,感謝各位的閱讀!
文章名稱:hive時間日期函數怎么用
文章網址:http://m.newbst.com/article46/ijphhg.html
成都網站建設公司_創新互聯,為您提供App開發、響應式網站、網站改版、ChatGPT、商城網站、Google
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯