PHP MySQL Limit Data Selections

PHP MySQL Limit Data Selections

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.

SQL query would then look like this: $sql = "SELECT * FROM Orders LIMIT 30";

The When the SQL query above is run, it will return the first 30 records.What if we want to select records 16 - 25 (inclusive)? Mysql also provides a way to handle this: by using OFFSET.

Assume we wish to select all records from 1 - 30 (inclusive) from a table called "Orders". The SQL query below says "return only 10 records, start on record 16 (OFFSET 15)": $sql = "SELECT * FROM Orders LIMIT 10 OFFSET 15";

You could also use a shorter syntax to achieve the same result: $sql = "SELECT * FROM Orders LIMIT 15, 10";

Notice that the numbers are reversed when you use a comma.

Dess App

DessApp is an Integrated E-learning Education, Interactive and User-friendly features, smarter options and redefining your school costs effectively and efficiently.

View
1 1