I have a calendar of events table and I would like to select ALL events with dates equal to or greater than 2 weeks from CURDATE()
. I have this
SELECT DATE_FORMAT(tournament_date_start, '%b %e') AS Tournament_Date
FROM tournament_main
WHERE tournament_main.tournament_date_start >= CURDATE()+14
ORDER BY tournament_main.tournament_date_start
LIMIT 5";
But it doesn't go two weeks ahead. I am not sure of how this works. Thanks!