必威体育Betway必威体育官网
当前位置:首页 > IT技术

unix_timestamp 时间戳函数用法(hive)

时间:2019-06-19 20:45:15来源:IT技术作者:seo实验室小编阅读:90次「手机版」
 

unix_timestamp

一、unix_timestamp函数用法

1)返回当前时间的时间戳

select unix_timestamp();

2)如果参数date满足yyyy-MM-dd HH:mm:ss形式,则可以直接unix_timestamp(string date) 得到参数对应的时间戳

或者满足yyyy-MM-dd形式


select unix_timestamp('2018-12-05 01:10:00','yyyy-MM-dd HH:mm:ss');

select unix_timestamp('2018-12-05','yyyy-MM-dd');

二、from_unixtime函数用法

相反的把时间戳转换成时间格式

from_unixtime(tt)

tt为10位数的时间戳

select from_unixtime(1543943400); 

from_unixtime(tt,‘yyyy-MM-dd’) 可以加上时间格式

select from_unixtime(1543943400,'yyyy-MM-dd');

相关阅读

各种语言实现Unix时间戳(timestamp)转换

http://tools.jb51.net/code/unixtime

php header 404写法 php header函数用法

php header 404写法:header("HTTP/1.1 404 Not Found");exit;如果以上代码不凑效,可以试试以下代码: header("Status: 404 Not F

13位时间戳(单位为毫秒)转换为10位字符串(单位为秒)

时间戳取10位 long timeStampSec = System.currentTimeMillis()/1000; String timestamp = String.format("%010d

IDEA项目发布中,Web Application:Exploded和Web Applic

关于这两者的区别,参考了这个链接参考文章,说得很清楚,感谢分享;简单总结下:1、web application exploded:这个是以文件夹形式发布项目,

大数据:Hive - ORC 文件存储格式

转自 ORC File文件结构 ORC的全称是(Optimized Row Columnar),ORC文件格式是一种Hadoop生态圈中的列式存储格式,它的产生早在2013

分享到:

栏目导航

推荐阅读

热门阅读