Hi
Please help.
I have a datetime field on a MySQL table.
I want to select rows that have both the current date and a time of last 15 minutes.
I have tried
SELECT * FROM main WHERE date_time >= DATE(NOW()) AND date_time > (NOW() - INTERVAL 15 MINUTE)
But this doesn't work
Thanks for your help in advance.