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

时间转字符串

  • select date_format(now(), ‘%Y-%m-%d’);
    结果:2018-05-02

时间转时间戳

  • 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-%d’);
    结果:2018-02

猜你喜欢

转载自blog.csdn.net/qq_31772441/article/details/80171154