spark日期處理

詳情查看:https://www.cnblogs.com/feiyumo/p/8760846.html

以防止文章丟失,搬運!轉載自飛末!!!
一、獲取當前時間
1.current_date獲取當前日期

2018-04-09
2.current_timestamp/now()獲取當前時間

2018-04-09 15:20:49.247
二、從日期時間中提取字段
1.year,month,day/dayofmonth,hour,minute,second

Examples:> SELECT day(‘2009-07-30’); 30
2.dayofweek (1 = Sunday, 2 = Monday, …, 7 = Saturday),dayofyear

Examples:> SELECT dayofweek(‘2009-07-30’);   5

Since: 2.3.0
3.weekofyear

weekofyear(date) - Returns the week of the year of the given date. A week is considered to start on a Monday and week 1 is the first week with >3 days.

Examples:> SELECT weekofyear(‘2008-02-20’);   8
6.date_format將時間轉化爲某種格式的字符串

Examples:> SELECT date_format(‘2016-04-08’, ‘y’);    2016
三、日期時間轉換
1.unix_timestamp返回當前時間的unix時間戳

Examples:

> SELECT unix_timestamp();  1476884637
> SELECT unix_timestamp('2016-04-08', 'yyyy-MM-dd');   1460041200

2.from_unixtime將時間戳換算成當前時間,to_unix_timestamp將時間轉化爲時間戳

Examples:

> SELECT from_unixtime(0, 'yyyy-MM-dd HH:mm:ss');  1970-01-01 00:00:00
>SELECT to_unix_timestamp('2016-04-08', 'yyyy-MM-dd');  
1460041200

3.to_date/date將字符串轉化爲日期格式,to_timestamp(Since: 2.2.0)

> SELECT to_date('2009-07-30 04:17:52');  2009-07-30
> SELECT to_date('2016-12-31', 'yyyy-MM-dd');   2016-12-31

SELECT to_timestamp(‘2016-12-31 00:12:00’);   2016-12-31 00:12:00

4.quarter 將1年4等分(range 1 to 4)

Examples:> SELECT quarter(‘2016-08-31’); 3
四、日期、時間計算
1.months_between兩個日期之間的月數

months_between(timestamp1, timestamp2) - Returns number of months between timestamp1 and timestamp2.

Examples:> SELECT months_between(‘1997-02-28 10:30:00’, ‘1996-10-30’);  3.94959677
2. add_months返回日期後n個月後的日期

Examples:> SELECT add_months(‘2016-08-31’, 1);  2016-09-30
3.last_day(date),next_day(start_date, day_of_week)

Examples:

SELECT last_day(‘2009-01-12’);  2009-01-31

SELECT next_day(‘2015-01-14’, ‘TU’);  2015-01-20

4.date_add,date_sub(減)

date_add(start_date, num_days) - Returns the date that is num_days after start_date.

Examples:

SELECT date_add(‘2016-07-30’, 1);  2016-07-31

5.datediff(兩個日期間的天數)

datediff(endDate, startDate) - Returns the number of days from startDate to endDate.

Examples:> SELECT datediff(‘2009-07-31’, ‘2009-07-30’); 1

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章