假设我有下表:
name birth(timestamp) death(timestamp)
-------- ---------------------- ---------------------
person1 22-05-2013 21:59:00 22-05-2013 21:59:00
person2 20-05-2013 21:58:58 27-06-2025 21:59:55
如何以最先返回最长寿的人的方式对此表进行排序?
答案 0 :(得分:0)
假设该表名为people
:
SELECT * FROM people ORDER BY DATEDIFF( death, birth ) DESC
要进行更精确的计算,请使用TIMESTAMPDIFF()
并指定度量单位:
SELECT * FROM people ORDER BY TIMESTAMPDIFF( MINUTE, birth, death ) DESC
此处,后一个日期是最后一个,而较早的日期是第一个(从DATEDIFF()
向后)。
DATEDIFF()
函数计算参数1减去参数2之间的天数。通过排序DESC(降序),我们指示MySQL首先返回最大的天数。
以下是DATEDIFF()
函数的MySQL参考:http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_datediff
TIMESTAMPDIFF()
:https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_timediff