mysql查询时间戳和日期的转换

余生颓废 提交于 2019-12-18 09:50:15

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') ; 

 

 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!