标签:format amp str date 相互转换 to_date 时间戳 转换 from
时间转字符串
date_format(now(),‘%Y-%m-%d‘)
时间转时间戳
unix_timestamp(now())
字符串转时间
str_to_date(‘2020-01-19‘,‘%Y-%m-%d %H‘)
字符串转时间戳
unix_timestamp(‘2020-01-19‘)
时间戳转字符串
from_unixtime(1579422064202,‘%Y-%d‘)
时间戳转时间
from_unixtime(1579422064202)
标签:format amp str date 相互转换 to_date 时间戳 转换 from
原文地址:https://www.cnblogs.com/ajing1111/p/12214433.html