zl程序教程

您现在的位置是:首页 > 

当前栏目

hive时间函数详解

详解 函数 时间 hive
2023-06-13 09:11:18 时间

1. from_unixtime

日期函数UNIX时间戳转日期函数: from_unixtime

语法: from_unixtime(bigint unixtime[, stringformat])

返回值: string

说明: 转化UNIX时间戳(从1970-01-0100:00:00 UTC到指定时间的秒数)到当前时区的时间格式。

举例:

 select from_unixtime(1635674463);
+----------------------+--+
|         _c0          |
+----------------------+--+
| 2021-10-31 10:01:03  |
+----------------------+--+

看来 xxxx-xx-xx xx:xx:xx 是官方格式

hive> select from_unixtime(1635650101,'yyyyMMdd');
20211031

2. unix_timestamp

unix_timestamp 有三种用法:

  • 获取当前UNIX时间戳函数: unix_timestamp

语法: unix_timestamp()

返回值: bigint

说明: 获得当前时区的UNIX时间戳

举例:

hive> select unix_timestamp();
1635650101
  • 日期转UNIX时间戳函数: unix_timestamp

语法: unix_timestamp(string date)

返回值: bigint

说明: 转换格式为 yyyy-MM-dd HH:mm:ss 的日期到UNIX时间戳。如果转化失败,则返回 NULL

举例:

hive> select unix_timestamp('2021-10-31 10:01:03');
1635674463
hive> select unix_timestamp('2021-10-31');
NULL
  • 指定格式日期转UNIX时间戳函数: unix_timestamp

语法: unix_timestamp(string date,string pattern)

返回值: bigint

说明: 转换 pattern 格式的日期到UNIX时间戳。如果转化失败,则返回 NULL

举例:

hive> select unix_timestamp('20211031 10:01:03', 'yyyyMMddHH:mm:ss');
1635674463
hive> select unix_timestamp('20211031100103', 'yyyyMMddHHmmss');
1635674463
hive> select unix_timestamp('2021-10-31','yyyy-MM-dd HH:mm:ss') ;
NULL

3. to_date

日期时间转日期函数: to_date

语法: to_date(string timestamp)

返回值: string

说明: 返回日期时间字段中的日期部分。

举例:

hive> select to_date('2021-10-31 10:03:01');
2021-10-31

4. current_timestamp

获取当前时区的高精度时间函数(精确到毫秒级):current_timestamp

语法:current_timestamp()

返回值:string

说明:获取当前时区的高精度时间函数(精确到毫秒级)

举例:

hive> select current_timestamp();
2021-10-31 13:00:20.694

5. to_utc_timestamp

获取时间戳在某个时区的时间,精确到毫秒:to_utc_timestamp

语法:to_utc_timestamp(bigint ,'timezone')

返回值:string

说明:获取时间戳在某个时区的时间,精确到毫秒

举例:

hive> select to_utc_timestamp(current_timestamp(),'GMT');
2021-10-31 15:48:16.717
hive> select to_utc_timestamp(1635666595327,'GMT');
2021-10-31 07:49:55.327
hive> select to_utc_timestamp(1635666595327,'GMT-8');
2021-10-31 15:49:55.327

6. year

日期转年函数: year

语法: year(string date)

返回值: int

说明: 返回日期中的年。

举例:

hive>   select year('2011-12-08 10:03:01');
2011
hive>   select year('2012-12-08');
2012

7. month

日期转月函数: month

语法: month(string date)

返回值: int

说明: 返回日期中的月份。

举例:

hive>   select month('2011-12-08 10:03:01');
12
hive>   select month('2011-08-08');
8

8. 日期转天函数: day

语法: day(string date)

返回值: int

说明: 返回日期中的天。

举例:

hive>  select day('2021-10-31 10:03:01');
31
hive>  select day('2021-10-31');
31

9. 日期转小时函数: hour

语法: hour(string date)

返回值: int

说明: 返回日期中的小时。

举例:

hive>  select hour('2021-10-08 10:03:01');
10

10. 日期转分钟函数: minute

语法: minute(string date)

返回值: int

说明: 返回日期中的分钟。

举例:

hive>  select minute('2021-12-08 10:03:01');
3

11. 日期转秒函数: second

语法: second(string date)

返回值: int

说明: 返回日期中的秒。

举例:

hive>  select second('2021-10-08 10:03:01');
1

12. 日期转周函数: weekofyear

语法: weekofyear(string date)

返回值: int

说明: 返回日期在当前的周数。

举例:

hive>  select weekofyear('2021-12-08 10:03:01');
49

13. 返回当前年月日:current_date

语法:current_date()或者current_date

返回值:string

说明:返回当前年月日string 格式xxxx-xx-xx

举例:

select current_date;

+-------------+--+
|     _c0     |
+-------------+--+
| 2019-01-15  |
+-------------+--+

select current_date();
+-------------+--+
|     _c0     |
+-------------+--+
| 2019-01-15  |
+-------------+--+

14. datediff

日期比较函数: datediff

语法: datediff(string enddate,string startdate)

返回值: int

说明: 返回结束日期减去开始日期的天数。

举例:

hive>  select datediff('2021-10-31','2021-05-09');
213

15. date_add

日期增加函数: date_add

语法: date_add(string startdate, int days)

返回值: string

说明: 返回开始日期startdate增加days天后的日期。

举例:

hive>  select date_add('2021-10-08', 10);
2021-10-18

16. date_sub

日期减少函数: date_sub 语法: `date_sub (string startdate,int days) ``

返回值: string

说明: 返回开始日期startdate减少days天后的日期。

举例:

hive>  select date_sub('2021-10-08',10);
2012-11-28

17. add_months()

日期减少函数: add_months

语法: add_months(string startdate,int days) ,startdate的格式是 xxxx-xx-xx

返回值: string==>xxxx-xx-xx格式

说明: 返回开始日期startdate减少months月后的日期。

举例:

select add_months(current_date,-1);

+-------------+--+
|     _c0     |
+-------------+--+
| 2018-12-15  |
+-------------+--+
select add_months('2018-10-10',-1);
+-------------+--+
|     _c0     |
+-------------+--+
| 2018-09-10  |
+-------------+--+

18. months_betwween

月份比较函数: months_betwween

语法: months_betwween(string enddate,string startdate)

返回值: int

说明: 返回结束日期与开始日期的月份差异值,daymonth 中的位置不同时,会返回小数。

举例:

hive> select months_between('2021-10-31', '2021-09-30');
1.0
hive> select months_between('2021-09-30', '2021-10-31');
-1.0
hive> select months_between('2021-09-30', '2021-10-09');
-0.32258065

19. trunc函数

时间截取归零函数: trunc

语法: trunc(string date[,string fmt]): 根据fmt格式来截取日期 date格式可以是 ‘xxxx-xx-xx’ 'xxxx-xxx-xx xx:xx:xx'

返回值 string

说明 截取并根据fmt归零时间注意所支持的格式为MONTH/MON/MM, YEAR/YYYY/YY

--对年截取归零
SELECT trunc('2018-06-01','YYYY');
+-------------+--+
|     _c0     |
+-------------+--+
| 2018-01-01  |
+-------------+--+

--对月截取归零
SELECT trunc('2018-07-06','MM');
+-------------+--+
|     _c0     |
+-------------+--+
| 2018-07-01  |
+-------------+--+

--也可以是详细的标准格式
SELECT trunc('2018-07-06 12:12:12','MM');
+-------------+--+
|     _c0     |
+-------------+--+
| 2018-07-01  |
+-------------+--+