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

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

WBOY
Release: 2016-06-07 18:01:58
Original
1174 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template