gpt4 book ai didi

mysql - SQL : Get data between the current date and current date +15 days

转载 作者:行者123 更新时间:2023-11-29 00:39:34 25 4
gpt4 key购买 nike

在我的应用程序中必须找到即将到来的生日成员,所以我必须找到当前日期和当前日期 +15 天之间的生日。

我试过这个查询

Select name from tname 
where dayofyear(birthday)-dayofyear(now()) between 0 and 15

当当前日期到达年底时,此查询不起作用

请提供正确的方法。

最佳答案

试试这个查询-

SELECT
name
FROM
tname
WHERE
birthday + INTERVAL YEAR(CURDATE()) - YEAR(birthday) YEAR
BETWEEN (CURDATE()) AND CURDATE() + INTERVAL 15 DAY;

关于mysql - SQL : Get data between the current date and current date +15 days,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12855907/

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