hive:函数:from_unixtime获取当前的时间

from_unixtime获取当前的时间:

select from_unixtime(unix_timestamp(),'yyyy-MM-dd HH:mm:ss')

hive (default)> 
              > 
              > 
              > select from_unixtime(unix_timestamp(),'yyyy-MM-dd HH:mm:ss');
unix_timestamp(void) is deprecated. Use current_timestamp instead.
OK
_c0
2019-05-30 20:11:37
Time taken: 0.083 seconds, Fetched: 1 row(s)
hive (default)> 

 

  • 2
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
Hive中的`date_format`和`from_unixtime`都是用于日期时间格式化的函数,但它们的用法和功能略有不同。 `date_format`函数用于将日期类型的数据按照指定格式进行格式化,语法如下: ``` date_format(date, fmt) ``` 其中,`date`是日期类型的数据,`fmt`是日期格式化的字符串,可以使用的格式化字符包括: - `%Y`:年份,4位数字 - `%y`:年份,2位数字 - `%m`:月份,2位数字 - `%d`:日期,2位数字 - `%H`:小时,24小时制,2位数字 - `%I`:小时,12小时制,2位数字 - `%M`:分钟,2位数字 - `%S`:秒数,2位数字 - `%s`:从1970年1月1日00:00:00到当前时间的秒数 - `%w`:星期几,0-6,0表示周日 例如,将日期类型的数据按照"yyyy-MM-dd"格式进行格式化,可以使用以下语句: ``` select date_format(date_column, 'yyyy-MM-dd') from table_name; ``` `from_unixtime`函数用于将Unix时间戳转换为指定格式的日期时间,语法如下: ``` from_unixtime(unix_time[, fmt]) ``` 其中,`unix_time`是Unix时间戳,`fmt`是日期时间格式化的字符串,可以使用的格式化字符和`date_format`函数相同。 例如,将Unix时间戳转换为"yyyy-MM-dd HH:mm:ss"格式的日期时间,可以使用以下语句: ``` select from_unixtime(unix_time_column, 'yyyy-MM-dd HH:mm:ss') from table_name; ``` 需要注意的是,`from_unixtime`函数的参数是Unix时间戳,即从1970年1月1日00:00:00开始的秒数,而`date_format`函数的参数是Hive中的日期类型,需要先将日期类型转换为Unix时间戳再使用`from_unixtime`函数进行格式化。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值