当前位置:   article > 正文

MySQL查询某时间范围的数据

MySQL查询某时间范围的数据
-- 查询今天的数据

select * from `user` where to_days(birthday) = to_days(CURDATE());
  • 1
  • 2
  • 3
-- 查询昨天的数据

select * from `user` where to_days(CURDATE()) - to_days(birthday)<=1;
  • 1
  • 2
  • 3
-- 查询最近 7 天的数据

select * from `user` where birthday > DATE_SUB(CURDATE(),INTERVAL 7 DAY);
  • 1
  • 2
  • 3
-- 查询最近一个季度的数据

select * from `user` where birthday > DATE_SUB(CURDATE(), INTERVAL 3 MONTH)
  • 1
  • 2
  • 3
-- 最近一年的数据

select * from `user` where birthday > DATE_SUB(CURDATE(), INTERVAL 1 YEAR);
  • 1
  • 2
  • 3
-- 本季度的数据

select * from `user` where quarter(birthday) = quarter(CURDATE());
  • 1
  • 2
  • 3
-- 上季度的数据

select * from `user` where quarter(birthday) = quarter(DATE_SUB(CURDATE(), INTERVAL 1 QUARTER));
  • 1
  • 2
  • 3
-- 查询今年的数据

select * from `user` where year(CURDATE()) - year(birthday) = 28 ;
  • 1
  • 2
  • 3
-- 查询第几月的数据

select * from `user` where month(birthday) = 8 ;
  • 1
  • 2
  • 3
-- 查询某年某月某日的数据

select * from `user` where date_format(birthday,'%Y-%m-%d')='2020-07-07';
  • 1
  • 2
  • 3
-- 查询制定时间段内的数据(只写到月,会出错)

select * from `user` where birthday between '2020-5-1 00:00:00' and '2020-9-3 00:00:00';
  • 1
  • 2
  • 3
-- 查询制定时间段内的数据(只写到月,会出错)

select * from `user` where birthday > '2020-5-1' and birthday < '2020-5-1';
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/406410
推荐阅读
相关标签
  

闽ICP备14008679号