获取sql中的最大值列表

时间:2010-12-24 08:43:15

标签: sql mysql

我正在使用mysql。我需要查询来获取最大值列表。

我知道如何获得一个最大值,即在select查询中使用max(colName)。

是否有一些类似的查询可以获取超过1个最大值,如前10个值。

3 个答案:

答案 0 :(得分:3)

select * from table order by colName desc limit 10;

答案 1 :(得分:1)

SELECT * FROM table
ORDER by price DESC
LIMIT 10

答案 2 :(得分:1)

select distinct colName from tablename order by colName desc limit 10;