gpt4 book ai didi

MySQL DATE_SUB 生日选择语句

转载 作者:行者123 更新时间:2023-11-29 06:59:20 26 4
gpt4 key购买 nike

我正在编写一个脚本,从数据库中选择生日提前 7 天的所有人,并向他们发送电子邮件

我可以选择所有今天生日的人,但我需要减去 7 天,这样我才能提前发送电子邮件。我已尝试多次使用 Date_Sub,但均未成功。

这是我现在使用的代码。

select
name,
email,
birthday
from members
where
month(birthday) = month(now())
and dayofmonth(birthday) = dayofmonth(now());

如何从日期中减去 7 天?我正在使用 Mysql

最佳答案

select
name,
email,
birthday
from members
where
month(birthday) = month(DATE_SUB(NOW(), INTERVAL 1 WEEK))
and dayofmonth(birthday) = dayofmonth(DATE_SUB(NOW(), INTERVAL 1 WEEK));

关于MySQL DATE_SUB 生日选择语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11006831/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com