时间戳转成日期

  1. select from_unixtime(1441565203,'yyyy/MM/dd HH:mm:ss')

日期转成时间戳

  1. select unix_timestamp('20111207 13:01:03')
  2. -- 默认格式为 "yyyy-MM-dd HH:mm:ss"
  3. -- 如果你想指定时间格式,写法如下
  4. select unix_timestamp('2021-07-27 13:01:03','yyyy-MM-dd HH:mm:ss')

yyyymmdd和yyyy-mm-dd日期之间的切换

方法1: 先转成时间戳,再转成日期字符串,并格式化;from_unixtime + unix_timestamp

  1. -- 20210727 转成 2021-07-27
  2. select from_unixtime(unix_timestamp('20210727','yyyymmdd'),'yyyy-mm-dd')
  3. -- 2021-07-27 转成 20210727
  4. select from_unixtime(unix_timestamp('2021-07-27','yyyy-mm-dd'),'yyyymmdd')

方法2: substr + concat 操作字符串

  1. -- 20210727 转成 2021-07-27
  2. select concat(substr('20210727',1,4),'-',substr('20210727',5,2),'-',substr('20210727',7,2))
  3. -- 2021-07-27 转成 20210727
  4. select concat(substr('2021-07-27',1,4),substr('2021-07-27',5,2),substr('2021-07-27',7,2))

需要注意的是,时间戳有可能是毫秒级的,然后这时候直接使用from_unixtime(1441565203,’yyyy/MM/dd HH:mm:ss’) 的话就会得到很奇怪的日期了,这时候要这样 from_unixtime(cast(151331629920/1000 as int)),同样的,时间转成毫秒级的时间戳也要乘以1000,如:unix_timestamp(‘2018-12-18 00:38:50’)*1000

如何区分时间戳是秒级还是毫秒级呢?一般来说,常见的时间戳是10位数的,13位数的时间戳就是毫秒级的

Hive 时间戳和日期相互转换 - 图1