select from_unixtime(cast(substring(server_time, 1, 10) as bigint),'yyyy-MM-dd HH') date
from access_log;
1. 除以1000,再格式化select from_unixtime(cast(server_time/1000 as bigint), 'yyyy-MM-dd') datefrom access_log;2. 字符串切割掉后3位,再格式化select from_unixtime(cast(substring(server_time, 1, 10) as bigint),'yyyy-MM...
固定日期转换成时间戳
select unix_timestamp('2016-08-16','yyyy-MM-dd') --1471276800
select unix_timestamp('20160816','yyyyMMdd') --1471276800
select unix_timestamp('2016-08-16T10:02:41Z', "yyyy-MM-dd'T'HH:mm:ss'Z'") --1471312961
16/Mar/2017:12:25:01 +0800 转成正常格式(yyy
首先这里我要说一下,这里的unixtime的输入单位十秒,也就是十位的BIGINT。
但是呢,在我们实际中用的时间戳一般都是十三位的时间戳,精确到毫秒了,如果将精确到毫秒的时间戳输入方法中会有错误,出现错误的日期。
解决办法:如果是13位的时间戳,可使用下面的方法
from_unixtime(cast(timestamp/1000 as bigint)) as ti
hive中获取日期与时间戳和当前时间戳
hive中的函数,日期转时间戳代码,
select unix_timestamp('2020-01-16 17:02:00');
+-------------+
| _c0 |
+-------------+
| 1579212120 |
+-------------+
hive中的时间转时间戳函数(不加引号)第二个参数为默认...
在Hive和SparkSQL中,可以使用from_unixtime()函数将Unix时间戳转换为时间戳。该函数的语法如下:
from_unixtime(unix_timestamp[, format])
其中,unix_timestamp是Unix时间戳,format是可选参数,用于指定输出的时间格式。如果不指定format,则默认输出为yyyy-MM-dd HH:mm:ss格式的时间戳。
例如,将Unix时间戳转换为时间戳的示例代码如下:
SELECT from_unixtime(1617888000);
输出结果为:
2021-04-08 00:00:00
这里的1617888000是Unix时间戳,表示2021年4月8日的零点整。