1
2
3
4
5
6
7
8
9
10
|
語法: from_unixtime(bigintunixtime[, string format])
返回值: string
說明: 轉化UNIX時間戳(從1970-01-01 00:00:00 UTC到指定時間的秒數)到當前時區的時間格式
舉例:
hive>selectfrom_unixtime(1323308943,‘yyyyMMdd’)fromdual;
20111208
|
1
2
3
4
5
6
7
8
9
10
|
語法: unix_timestamp()
返回值:bigint
說明: 得到當前時區的UNIX時間戳
舉例:
hive>selectunix_timestamp()fromdual;
1323309615
|
1
2
3
4
5
6
7
8
9
10
11
|
日期轉UNIX時間戳函數: unix_timestamp語法: unix_timestamp(stringdate)
返回值: bigint
說明: 轉換格式爲「yyyy-MM-dd HH:mm:ss「的日期到UNIX時間戳。若是轉化失敗,則返回0。
舉例:
hive> selectunix_timestamp(’2011-12-07 13:01:03′)fromdual;
1323234063
|
1
2
3
4
5
6
7
8
9
10
11
|
指定格式日期轉UNIX時間戳函數: unix_timestamp語法: unix_timestamp(stringdate, string pattern)
返回值: bigint
說明: 轉換pattern格式的日期到UNIX時間戳。若是轉化失敗,則返回0。
舉例:
hive> selectunix_timestamp(’20111207 13:01:03′,’yyyyMMdd HH:mm:ss’)fromdual;
1323234063
|
1
2
3
4
5
6
7
8
9
10
|
語法: to_date(stringtimestamp)
返回值: string
說明: 返回日期時間字段中的日期部分。
舉例:
hive>selectto_date(’2011-12-08 10:03:01′)fromdual;
2011-12-08
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
語法:year(stringdate)
返回值:int
說明: 返回日期中的年。
舉例:
hive>selectyear(’2011-12-08 10:03:01′)fromdual;
2011
hive>selectyear(’2012-12-08′)fromdual;
2012
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
語法:month(stringdate)
返回值:int
說明: 返回日期中的月份。
舉例:
hive>selectmonth(’2011-12-08 10:03:01′)fromdual;
12
hive>selectmonth(’2011-08-08′)fromdual;
8
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
語法:day(stringdate)
返回值:int
說明: 返回日期中的天。
舉例:
hive>selectday(’2011-12-08 10:03:01′)fromdual;
8
hive>selectday(’2011-12-24′)fromdual;
24
|
1
2
3
4
5
6
7
8
9
10
|
語法:hour(stringdate)
返回值:int
說明: 返回日期中的小時。
舉例:
hive>selecthour(’2011-12-08 10:03:01′)fromdual;
10
|
1
2
3
4
5
6
7
8
9
10
|
語法:minute(stringdate)
返回值:int
說明: 返回日期中的分鐘。
舉例:
hive>selectminute(’2011-12-08 10:03:01′)fromdual;
3
|
1
2
3
4
5
6
7
8
9
10
|
語法:second(stringdate)
返回值:int
說明: 返回日期中的秒。
舉例:
hive>selectsecond(’2011-12-08 10:03:01′)fromdual;
1
|
1
2
3
4
5
6
7
8
9
10
|
語法: weekofyear (stringdate)
返回值:int
說明: 返回日期在當前的週數。
舉例:
hive>selectweekofyear(’2011-12-08 10:03:01′)fromdual;
49
|
1
2
3
4
5
6
7
8
9
10
|
語法: datediff(string enddate, string startdate)
返回值:int
說明: 返回結束日期減去開始日期的天數。
舉例:
hive>selectdatediff(’2012-12-08′,’2012-05-09′)fromdual;
213
|
1
2
3
4
5
6
7
8
9
10
|
語法: date_add(string startdate,intdays)
返回值: string
說明: 返回開始日期startdate增長days天后的日期。
舉例:
hive>selectdate_add(’2012-12-08′,10)fromdual;
2012-12-18
|
1
2
3
4
5
6
7
8
9
10
|
語法: date_sub (string startdate,intdays)
返回值: string
說明: 返回開始日期startdate減小days天后的日期。
舉例:
hive>selectdate_sub(’2012-12-08′,10)fromdual;
2012-11-28
|