Home > Database > Mysql Tutorial > body text

MySQL limit实际用法的详细解析_MySQL

WBOY
Release: 2016-06-01 13:35:50
Original
1161 people have browsed it

bitsCN.com

在我们使用相关的查询语句的时候,一般都要返回前几条或是中间的某几行数据,这时你应如何处理呢?不必担心,MySQL数据库已经为我们提供了这样一个功能。

SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset 

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

 

1 MySQL> SELECT * FROM table LIMIT 5,10;
Copy after login

检索记录行 6-15

 

为了检索从某一个偏移量到记录集的结束所有的记录行,可以指定第二个参数为 -1:

1 MySQL> SELECT * FROM table LIMIT 95,-1; 
Copy after login

检索记录行 96-last.

 

如果只给定一个参数,它表示返回最大的记录行数目: 

1 MySQL> SELECT * FROM table LIMIT 5; 
Copy after login

检索前 5 个记录行。换句话说,LIMIT n 等价于 MySQL LIMIT 0,n。

bitsCN.com
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!