码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 时间、字符串、时间戳互转

时间:2018-04-12 13:42:38      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:pre   字符   rom   inf   mes   时间戳   span   info   font   

 

时间转字符串

select date_format(now(),%Y-%m-%d);
//2018-04-12

时间转时间戳

select UNIX_TIMESTAMP(now());
//1523504912

时间戳转时间

select FROM_UNIXTIME(1523504912)
//2018-04-12 11:48:32

时间戳转字符串

select FROM_UNIXTIME(1523504912,%Y-%d)
//2018-12

字符串转时间

select str_to_date(2018-04-12,%Y-%m-%d);
//2018-04-12

 

字符串转时间戳

select UNIX_TIMESTAMP(2018-04-12);
//1523462400

附表

技术分享图片

 图片来之网络,%S、%I不可用。

Mysql 时间、字符串、时间戳互转

标签:pre   字符   rom   inf   mes   时间戳   span   info   font   

原文地址:https://www.cnblogs.com/swordyt/p/8806923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!