Home > Database > Mysql Tutorial > body text

MySQL-限制返回记录数limit

WBOY
Release: 2016-06-07 17:04:41
Original
1027 people have browsed it

SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset LIMIT 子句可以被用于强制 SELECT 语句返回指定的记录数。LIM

LIMIT 子句可以被用于强制 SELECT 语句返回指定的记录数。LIMIT 接受一个或两个数字参数。参数必须是一个整数常量。如果给定两个参数,第一个参数指定第一个返回记录行的偏移量,第二个参数指定返回记录行的最大数目。初始记录行的偏移量是 0(而不是 1): 为了与 PostgreSQL 兼容,MySQL 也支持句法: LIMIT # OFFSET #。

LIMIT 2 OFFSET 1;

比如这个SQL ,,limit后面跟的是2条数据,offset后面是从第1条开始读取。

LIMIT 2,1;

而这个SQL,limit后面是从第2条开始读,读取1条信息。

查询时间最新目的几条记录的SQL语句:

 time desc LIMIT  n;

如果是Oracle 可以用rownum实现相同的功能。

linux

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!