Laravel orderBy, groupBy and limit Example

Websolutionstuff | Jan-27-2021 | Categories : Laravel PHP MySQL

In this article, we will see the laravel orderBy, groupBy, and limit examples. Here we will see different types of laravel 6/7/8 query examples. You can use the order by, group by, and limit functions for getting records from the database.

So, let's see the query of orderBy in laravel 7 and laravel 8, the query of the group by in laravel 7/8, and get a limited no of records in laravel 7/8.

The orderBy method allows you to sort the results of the query by a given column. The first argument accepted by the orderBy method should be the column you wish to sort by, while the second argument determines the direction of the sort and may be either asc or desc.

Laravel orderBy() Function

Laravel Example:

​$users = DB::table('users')
         ->orderBy('name', 'desc')
         ->get();

SQL Query:

select * from `users` order by `name` desc;

Output:

All user's names will be sorted in descending order.

 

Laravel groupBy() Function

The groupBy and having methods may be used to group the query results. The having method's signature is similar to that of the where method.

$users = DB::table('users')
         ->groupBy('account_id')
         ->having('account_id', '>', 100)
         ->get();

 

Laravel limit() Function

The limit method is used to limit the number of results returned from the query.

$users = DB::table('users')
         ->limit(5)
         ->get();

 

Recommended Post
Featured Post
How to Download File on the FTP Server Using PHP
How to Download File on the FT...

Today we will see how to download file on the ftp server using php. Many time we have requirment to retrieve file from t...

Read More

May-21-2021

How To Create Dynamic XML Sitemap In Laravel 9
How To Create Dynamic XML Site...

In this article, we will see how to create a dynamic XML sitemap in laravel 9. As we know sitemap is a very im...

Read More

Jun-08-2022

Laravel 9 Flash Message Example
Laravel 9 Flash Message Exampl...

In this article, we will see a laravel 9 flash message example. Here, we will learn how to create or implement flash mes...

Read More

Dec-27-2022

How To Get Last 15 Days Records In MySQL
How To Get Last 15 Days Record...

In this tutorial, we will see how to get the last 15 days records in MySQL PHP.  In PHP, you can use INTERVAL...

Read More

Feb-09-2022