SQL LIMIT Examples

Let’s look at some examples of the LIMIT clause in SQL to understand it’s working:

We will use the sample table name “Student” and write some LIMIT queries. 

Student Table

To create this table in your system, write the following queries:

SQL
CREATE TABLE student (
  id INT PRIMARY KEY,
  name VARCHAR(50),
  age INT
);

INSERT INTO student (id, name, age)
VALUES (1, 'Shubham Thakur', 18),
       (2, 'Aman Chopra', 19),
       (3, 'Bhavika uppala', 20),
       (4,'Anshi Shrivastava',22);

LIMIT Clause Example

In this example, we will only retrieve 3 rows from the student table using LIMIT.

Query:

SELECT * FROM student 
LIMIT 3;

Output:

LIMIT Clause Example

LIMIT with ORDER BY Clause

In this example, we will use the LIMIT clause with ORDER BY clause

Query:

SELECT * FROM Student
ORDER BY Grade DESC
LIMIT 3;

Output:

LIMIT with ORDER BY Clause

The LIMIT operator can be used in situations such as the above, where we need to find the top 3 students in a class and do not want to use any conditional statements.

SQL LIMIT Clause

The LIMIT clause in SQL allows users to control the amount of data retrieved and displayed in the result set.

It is useful when only a subset of records is needed for analysis or display purposes in large databases with thousands of records.

Similar Reads

Syntax

The Syntax to use LIMIT in SQL is:...

SQL LIMIT Examples

Let’s look at some examples of the LIMIT clause in SQL to understand it’s working:...

SQL LIMIT OFFSET

LIMIT OFFSET parameter skips a specified number of rows before returning the result set....

SQL LIMIT to Get the nth Highest or Lowest Value

Now we will look for LIMIT use in finding highest or lowest value we need to retrieve the rows with the nth highest or lowest value. In that situation, we can use the subsequent LIMIT clause to obtain the desired outcome....

LIMIT with WHERE Clause

The WHERE clause can also be used with LIMIT. It produces the rows that matched the condition after checking the specified condition in the table....

Restrictions on the LIMIT clause

There are several limitations of SQL LIMIT. The following situations do not allow the LIMIT clause to be used:...

Important Points About SQL LIMIT

The LIMIT clause is used to set an upper limit on the number of tuples returned by SQL.It is important to note that this clause is not supported by all SQL versions.The LIMIT clause can also be specified using the SQL 2008 OFFSET/FETCH FIRST clauses.The limit/offset expressions must be a non-negative integer....