美文网首页
MySQL日期、字符串、时间戳互转

MySQL日期、字符串、时间戳互转

作者: 亻火子 | 来源:发表于2020-02-20 17:07 被阅读0次
#获取当前时间戳
select unix_timestamp();
select unix_timestamp(now());
#获取当前时间
select now();

一、时间格式化为字符串

select date_format(now(), '%Y-%m-%d %H:%i:%s');
#结果:2020-02-20 16:48:15

二、时间转时间戳

select unix_timestamp(now());
#结果:1582188616

三、字符串转时间

select str_to_date('2020-02-20 16:52:30', '%Y-%m-%d %H');
#结果:2020-02-20 16:00:00

四、字符串转时间戳

select unix_timestamp('2020-02-20 16:52:30');
#结果:1582188750

五、时间戳转时间

select from_unixtime(1582188750);
#结果:2020-02-20 16:52:30

六、时间戳格式化为字符串

select from_unixtime(1582188750,'%Y-%m-%d');  
#结果:2020-02-20

相关文章

网友评论

      本文标题:MySQL日期、字符串、时间戳互转

      本文链接:https://www.haomeiwen.com/subject/ijgxqhtx.html