如何在MySQL中找到两个日期之间的差异?

| 如何在MySQL中找到两个日期之间的差异?     
已邀请:
DATEDIFF
返回两个日期之间的天数差: http://dev.mysql.com/doc/refman/5.5/zh-CN/date-and-time-functions.html#function_datediff     
mysql> select current_date()>\'2011-01-01 12:01:01\';
+--------------------------------------+
| current_date()>\'2011-01-01 12:01:01\' |
+--------------------------------------+
|                                    1 |
+--------------------------------------+
1 row in set (0.00 sec)

mysql> select \'2011-01-01 12:01:01\' > current_date();
+----------------------------------------+
| \'2011-01-01 12:01:01\' > current_date() |
+----------------------------------------+
|                                      0 |
+----------------------------------------+
1 row in set (0.00 sec)

mysql> 
    
学习DATEDIFF
eg :     SELECT DATEDIFF(\'2007-12-31 23:59:59\',\'2007-12-30\');
    

要回复问题请先登录注册