第一种: 库里时间戳为13位时:
类似这种13位的时间戳:1476141341051
怎么转换成正常的日期:
如果库里存的string类型,需要toUInt64(date_time) date_time的值为:1476141341051
然后利用toDateTime(toUInt64(date_time) /1000) 转换成日期格式
然后再利用formatDateTime()转:
formatDateTime(toDateTime(toUInt64(date_time)/1000),'%Y-%m-%d %H:%M:%S')
然后成功转成:
第二种:库里时间戳为18位时:
怎么转换成正常的日期:
如果库里存的string类型,需要toUInt64(date_time) date_time的值为:141476134105176132
然后利用toDateTime(toUInt64(date_time) /1000000) 转换成日期格式
然后再利用formatDateTime()转:
formatDateTime(toDateTime(toUInt64(NOW_TIMESTAMP)/1000000),'%Y-%m-%d %H:%M:%S')
然后成功转成: