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
This worked for me:
SELECT * FROM table where date(column_date) = curdate()