得到相应的OrderDate for max(OrderPrice)

时间:2011-11-14 14:10:08

标签: mysql aggregate-functions

一个例子: http://www.w3schools.com/sql/sql_func_max.asp

在上面的例子中,如何获得max(OrderPrice)的相应OrderDate?

非常感谢

1 个答案:

答案 0 :(得分:3)

我认为你可以在没有GROUP BY的情况下使用HAVING。

SELECT OrderDate FROM table_name HAVING MAX(column_name);