mysql datetime comparison

Viewed 113146

For example the following query works fine:

SELECT * 
  FROM quotes 
 WHERE expires_at <= '2010-10-15 10:00:00';

But this is obviously performing a 'string' comparison - I was wondering if there was a function built in to MySQL that specifically does 'datetime' comparisons.

3 Answers
Related