MySQL中日期和时间戳互相转换的函数和方法
程序员文章站
2024-02-26 23:11:46
① 时间戳转换成日期
复制代码 代码如下:
from_unixtime
例如:
数据表中 invest_time 存储的是时间戳,如 1429063399
使...
① 时间戳转换成日期
复制代码 代码如下:
from_unixtime
例如:
数据表中 invest_time 存储的是时间戳,如 1429063399
使用 from_unixtime 可以把时间戳转换为日期:
复制代码 代码如下:
select from_unixtime(invest_time,'%y年%m月%d') from crm_invest_apply
执行结果:
② 把日期转换为时间戳,和 from_unixtime 正好相反
复制代码 代码如下:
unix_timestamp
例如:
复制代码 代码如下:
select unix_timestamp('2015-04-29')
执行结果:
ps:这里再为大家推荐一个本站unix时间戳转换工具,附带了各种语言(mysql/php/java/python等)unix时间戳的操作方法:
unix时间戳(timestamp)转换工具:
下一篇: 基于python 字符编码的理解