Can you show us some sample data and the SQL query you tried? Sounds like you've got something messed up, because the regular comparison operator works just fine in MySQL...
SELECT '2012-03-08' > NOW(); # Result: 0
SELECT '2012-03-09' > NOW(); # Result: 0
SELECT '2012-03-10' > NOW(); # Result: 1