一、時間轉字符串
select data_format(now(),'%Y-%m-%d %H:%i:%s');
二、時間轉時間戳
select unix_timestamp(now());
三、字符串轉時間
select str_to_data('2018-05-02','%Y-%m-%d %H:%i:%s')
四、字符串轉時間戳
select unix_)timestamp('2018-05-02')
五、時間戳轉時間
select from_unixtime(1525263383)
六、時間戳轉字符串
select from_unixtime(1525263383,'%Y-%m')
