Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何使用 MYSQL 和 PHP 获取本周、本月和下个月正在庆祝生日的朋友的生日?
如何使用此表格布局查询数据库以获取未来 7 天内的生日
ID - Int Name - VarChar DOB - 日期
这取决于你持有的格式DOB。如果你持有它yyyy-mm-dd比你可以使用一个字符串比较,像这样的子句:
DOB
yyyy-mm-dd
SELECT * FROM table_name WHERE DOB <= 'computed_date'
wherecomputed_date是用字符串连接构建的,例如:
computed_date
$computed_date = sprintf('%4d-%2d-%2d', $year, $day, $month);