Is there a way to use the Now() function in SQL to select values with today\'s date?
Now()
I was under the impression Now() would contain the ti
You can try this sql code;
SELECT [column_1], [column_1], ... FROM (your_table) where date_format(record_date, '%e%c%Y') = date_format(now(), '%e%c%Y')