MYSQL查询一周内的数据(最近7天的)的方法
这个方法是在网上找到的,因为在lofter山寨计划中写到一个功能块的时候需要用到这种查询方法,所以skidu将它记录下来
查询一天:
select * from table where to_days(column_time) = to_days(now());
select * from table where date(column_time) = curdate();
这个方法是在网上找到的,因为在lofter山寨计划中写到一个功能块的时候需要用到这种查询方法,所以skidu将它记录下来
查询一天:
select * from table where to_days(column_time) = to_days(now());
select * from table where date(column_time) = curdate();