I need to list and records in a table where "theDate" field is either current or future.
The "theDate" field will contain a date in this format: Year-month-day ... so something like: 2014-12-31
So I have SELECT * FROM events
but I need the WHERE part so I can get only current and future dates.
How can I do this?