This is an SQL question, which belongs in the database section.
If you want to find all the records that have dates in sort_date that are after the current date, use the following query:
SELECT * FROM events WHERE sort_date>NOW()
Notice that you want the sort_date to be greater than NOW(), not less than.