我正在使用mysql。我需要查询来获取最大值列表。
我知道如何获得一个最大值,即在select查询中使用max(colName)。
是否有一些类似的查询可以获取超过1个最大值,如前10个值。
答案 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;