mysql中時間、時間戳與字符串之間相互轉換的方法
1.時間戳轉字符串
from_unixtime(1579422064202,'%Y-%d')
2.字符串轉時間戳
unix_timestamp('2020-01-19')
3.時間轉字符串
date_format(now(),'%Y-%m-%d')
4.時間轉時間戳
unix_timestamp(now())
5.字符串轉時間
str_to_date('2020-01-19','%Y-%m-%d %H')
6.時間戳轉時間
from_unixtime(1579422064202)