mysql时间、字符串、时间戳互相转换

2019-12-29 16:54:06 1106
'时间转字符串
select date_format(now(), ‘%y-%m-%d %h:%i:%s’); 
结果:2018-05-02 20:24:10
时间转时间戳
select unix_timestamp(now()); 
结果:1525263383
字符串转时间
select str_to_date(‘2018-05-02’, ‘%y-%m-%d %h’); 
结果:2018-05-02 00:00:00
字符串转时间戳
select unix_timestamp(‘2018-05-02’); 
结果:1525263383
时间戳转时间
select from_unixtime(1525263383); 
结果:2018-05-02 20:16:23
时间戳转字符串
select from_unixtime(1525263383, ‘%y-%m’); 
结果:2018-05