Home  >  Article  >  Database  >  mysql 前几条记录语句之(limit)

mysql 前几条记录语句之(limit)

WBOY
WBOYOriginal
2016-06-07 18:01:581126browse

mysql 的 top 方法 limit,用来获取数据库查询的前几天记录。

MySql没有提供top方法。可是他有limit方法提供同样的功能。

SELECT * FROM `tfidf` order by weight desc limit 1, 10830

SELECT * FROM `tfidf` order by weight desc limit 10

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn