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

mysql近几天的查询

时间:2016-11-15 07:56:28      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:查询   sql   rom   ble   字段   今天   sub   时间   rda   

今天:select*from table1 where to_days(时间字段名)=to_days(now());

昨天:select*from table1 where to_days(now())-to_days(时间字段名)<=1;

近7天:select*from table1 where date_sub(curdate(),interval 7 day)<=date(时间字段名);

近30天:select*from table1 where date_sub(curdate(),interval 30 day)<=date(时间字段名);

当月:select*from table1 where date_formate(时间字段名,‘%Y%m‘)=date_formate(curdate,‘%Y%m‘);

上月:select*from table1 where period_diff(date_formate(now(),‘%Y%m‘),date_formate(时间字段名,‘%Y%m’))=1.

 

mysql近几天的查询

标签:查询   sql   rom   ble   字段   今天   sub   时间   rda   

原文地址:http://www.cnblogs.com/hyc123-/p/6064130.html

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