专业编程基础技术教程

网站首页 > 基础教程 正文

MySQL时间、字符串、戳的转换

ccvgpt 2024-12-03 10:57:31 基础教程 1 ℃

MySQL时间、字符串、戳的转换

select date_format(now(), ‘%Y-%m-%d %H:%i:%s’);

结果:2018-05-02 20:24:10

MySQL时间、字符串、戳的转换

时间转时间戳

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

记得双击关注 么么哒!

最近发表
标签列表