I'm not a database expert, so I need some help.

I have a field in my database called "StartDate" and is formatted YYYY-MM-DD. I need a query that will select rows from the StartDate and for the next 5 days into the future.

Here's what I've come up with (and, obviously, it's not working):

Code:

SELECT Title, Request, StartDate FROM `Requests` WHERE NOW() >= StartDate AND NOW() <= DATE_ADD(StartDate, INTERVAL 5 DAY)