本篇文章給大家主要講的是關于MySQL中Select Limit使用方法的內(nèi)容,感興趣的話就一起來看看這篇文章吧,相信看完MySQL中Select Limit使用方法對大家多少有點參考價值吧。
十多年的巍山網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。營銷型網(wǎng)站的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調(diào)整巍山建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)從事“巍山網(wǎng)站設計”,“巍山網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
The LIMIT clause can be used to constrain the number of rowsreturned by the SELECT statement.
LIMIT takes one or two numeric arguments,which must both be nonnegative integer constants, with these exceptions:
limit后面可以跟1或2個×××參數(shù),必須是非負整數(shù)常量。
Within prepared statements, LIMIT parameters can be specified using? placeholder markers.
在預編譯語句中,limit參數(shù)可使用?占位符。
Within stored programs, LIMIT parameters can be specified usinginteger-valued routine
parameters or local variables.
With two arguments, the first argumentspecifies the offset of the first row to return, and the second specifies themaximum number of rows to return. The offset of theinitial row is 0 (not 1):
SELECT * FROM tbl LIMIT5,10; # Retrieve rows 6-15
To retrieve all rows from a certain offsetup to the end of the result set, you can use some large
number for the second parameter. This statement retrieves all rows from the 96th row to thelast:
SELECT * FROM tbl LIMIT95,18446744073709551615;
With one argument, the value specifies thenumber of rows to return from the beginning of the result set:
SELECT * FROM tbl LIMIT5; # Retrieve first 5 rows,返回前5行
In other words, LIMIT row_count isequivalent to LIMIT 0, row_count.
For prepared statements, you can useplaceholders. The following statements will return one row
from the tbl table:
SET @a=1;
PREPARE STMT FROM 'SELECT* FROM tbl LIMIT ?';
EXECUTE STMT USING @a;
The following statements will return thesecond to sixth row from the tbl table:
SET @skip=1; SET@numrows=5;
PREPARE STMT FROM 'SELECT* FROM tbl LIMIT ?, ?';
EXECUTE STMT USING @skip,@numrows;
For compatibility with PostgreSQL, MySQLalso supports the LIMIT row_count OFFSET offset
syntax.
If LIMIT occurs within a subquery and alsois applied in the outer query, the outermost LIMIT takes
precedence. For example, the followingstatement produces two rows, not one:
(SELECT ... LIMIT 1) LIMIT 2;
以上關于MySQL中Select Limit使用方法詳細內(nèi)容,對大家有幫助嗎?如果想要了解更多相關,可以繼續(xù)關注我們的行業(yè)資訊板塊。