I need a query to select data between two dates with today\'s date as a reference.
The database has a datetime field for \"start\" and a datetime field for \"end\".<
Thank everyone I ended up using:
select * from news where start = curdate()
I tried
SELECT * FROM news WHERE NOW() BETWEEN start AND end;
and it worked almost correctly. It didn't want to show news articles that both started and ended on the same day at the same time.
-tegan