通过本文主要向大家介绍了mysql limit语句,mysql中的limit语句,mysql查询语句limit,mysql limit,mysql limit用法等相关知识,希望本文的分享对您有所帮助
MySql没有提供top方法。可是他有limit方法提供同样的功能。
SELECT * FROM `tfidf` order by weight desc limit 1, 10830
SELECT * FROM `tfidf` order by weight desc limit 10
</div>
SELECT * FROM `tfidf` order by weight desc limit 1, 10830
SELECT * FROM `tfidf` order by weight desc limit 10
</div>