Limit Data Selections in PHP and MySQL

Limit the number of data choices from a MySQL database

There is a LIMIT clause in MySQL that lets you tell it how many records to return.

The LIMIT clause makes it easy to code multi-page results or pagination in SQL, which is very useful for large tables. When a lot of records are returned, it can slow things down.

Let\’s say we want to get all of the records from 1 to 50 from a table called \”result.\” This is how the SQL query would then look:

$sql = \”SELECT * FROM results LIMIT 50\”;

When the above SQL query is run, the first 50 records will be returned.

What if we want to pick records between 26 and 35?

Mysql also has a way to handle this, which is to use the OFFSET command.

In the SQL query below, it says \”return only 10 records, start on record 26 (OFFSET 25)\”:

$sql = \”SELECT * FROM results LIMIT 20 OFFSET 25\”;

You could also get the same result with a shorter sentence:

$sql = \”SELECT * FROM results LIMIT 25, 20\”;

When you use a comma, the numbers are written in the wrong order.

Related Article
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

PHP Tutorial – Complete Guide for Beginners to Advanced Welcome to the most comprehensive PHP tutorial available online at PHPOnline.in Read more

Introduction of PHP

Introduction to PHP – Learn PHP from Scratch with Practical Examples Welcome to your complete beginner's guide to PHP. Whether Read more

Syntax Overview of PHP

Syntax Overview of PHP (2025 Edition) Welcome to phponline.in, your one-stop platform for mastering PHP. This comprehensive, SEO-rich tutorial on Read more

Environment Setup in PHP

Setting Up PHP Environment (Beginner’s Guide) If you’re planning to learn PHP or start developing websites using PHP, the first Read more

Variable Types in PHP

PHP Variable Types: Complete Beginner's Guide to PHP Data Types Welcome to phponline.in, your trusted source for beginner-to-advanced level PHP Read more