1

我有日期字段,我查询在 mysql 中选择 7 天之前的生日。

例如,如果

出生 = 1986-08-05

如果现在是 2012-07-30 这个查询提醒我。或者

出生 = 1986-01-05

如果现在是 2012-12-30 这个查询提醒我。出生是领域user_table

4

4 回答 4

1

如果您想要可重用的代码并希望让您的 SQL 易于阅读和维护,请使用 SQL 函数。生日就是纪念日,所以...

DROP FUNCTION IF EXISTS anniversary_after;
DELIMITER $$
CREATE FUNCTION anniversary_after(anydate DATE, after DATE)
RETURNS DATE DETERMINISTIC
BEGIN
  DECLARE anniversary DATE;
  DECLARE years INTEGER;
  SET years = YEAR(after) - YEAR(anydate);
  SET anniversary = DATE_ADD(anydate, INTERVAL years YEAR);
  IF anniversary < after THEN
    SET anniversary = DATE_ADD(anniversary, INTERVAL 1 YEAR);
  END IF;
  RETURN anniversary;
END
$$
DELIMITER ;


DROP FUNCTION IF EXISTS anniversary;
CREATE FUNCTION anniversary(anydate DATE)
RETURNS DATE DETERMINISTIC
RETURN anniversary_after(anydate, CURRENT_DATE());

显示下一个周年纪念日:

SELECT anniversary('1994-04-05');

显示距离下一个周年纪念日的天数:

SELECT DATEDIFF(anniversary('1994-04-05'), CURRENT_DATE());
于 2014-01-06T18:06:39.697 回答
1
select * from user_table
where date_format(date_sub(birth, interval 7 days), "%m-%d")
    = date_format(now(), "%m-%d")
   or date_format(date_sub(birth, interval 7 days), "%m-%d") = '02-29'
  and month(now()) = 2 and month(date_add(now(), interval 1 day)) = 3
于 2012-12-20T07:30:22.593 回答
1

我为这个目标找到了我的选择。

select *,birthdate,
concat(if(date_format(birthdate, '%m') = '12',date_format(curdate(), "%Y")
,date_format(now(), "%Y")),
date_format(date_add(curdate(), interval 7 day), '%Y')) as birthday 
from users 
HAVING birthday BETWEEN curdate() and date_add(curdate(), interval 7 day)

感谢您的帮助。

于 2013-01-27T12:44:30.033 回答
0

像这样的东西?

SELECT user_name, DATE_SUB(birth, INTERVAL 7 DAYS) as SevenDaysBefore from user_table
于 2012-12-20T07:17:11.497 回答