MYSQL int型日期处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MYSQL int型日期处理相关的知识,希望对你有一定的参考价值。
使用unix_timestamp()将日期格式转换成int型
例如:
select now(),unix_timestamp(now()) ;
now() | unix_timestamp(now())
2014-11-28 09:54:43 | 1417139683
使用from_unixtime()从int型timestamp转换出日期
例如:
select upt_time,from_unixtime(upt_time) from drive_rel;
upt_time | from_unixtime(upt_time)
1336964014 | 2012-05-14 10:53:34
1361786530 | 2013-02-25 18:02:10
1284031294 | 2010-09-09 19:21:34
以上是关于MYSQL int型日期处理的主要内容,如果未能解决你的问题,请参考以下文章