Limit Data Selections From A MySQL Database
Limit Data Selections From A MySQL Database
Database
MySQL provides a LIMIT clause that is used to specify the number of records to
return.
The LIMIT clause makes it easy to code multi page results or pagination with
SQL, and is very useful on large tables. Returning a large number of records can
impact on performance.
Assume we wish to select all records from 1 - 30 (inclusive) from a table called
"Orders". The SQL query would then look like this:
When the SQL query above is run, it will return the first 30 records.
The SQL query below says "return only 10 records, start on record 16 (OFFSET
15)":
You could also use a shorter syntax to achieve the same result:
Notice that the numbers are reversed when you use a comma.