I have a table with data. Each antry has a date stamp yyyy-mm-dd.
I need to get only the records that have date stamp larger or equal to current date.
I've tried something liek this but without success. What am I doing wrong?
SELECT val FROM t1 WHERE t1.date > CURDATE()