Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网上搜索并找到了如何返回前 N 条记录
SELECT * FROM tab1 LIMIT 10;
但我想找到在某一列中具有最高值的前 N 条记录......它的语法是什么?先感谢您。
SELECT * FROM tab1 order by field desc limit 10;