mysql查询时间戳和日期的转换
Posted God丶魔多
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql查询时间戳和日期的转换相关的知识,希望对你有一定的参考价值。
mysql提供了两个函数:
from_unixtime(time_stamp) -> 将时间戳转换为日期 unix_timestamp(date) -> 将指定的日期或者日期字符串转换为时间戳
如果要查询当天的订单的记录: [plain] select count(*) from b_order Where date_format(from_unixtime(create_time),‘%Y-%m-%d‘) = date_format(now(),‘%Y-%m-%d‘) 也可以这样: [plain] select count(*) from b_order Where create_time >= unix_timestamp(‘2013-10-24 00:00:00‘) and create_time <= unix_timestamp(‘2013-10-24 23:59:59‘) ;
以上是关于mysql查询时间戳和日期的转换的主要内容,如果未能解决你的问题,请参考以下文章