Laravel orderBy, groupBy and limit Example

Websolutionstuff
1 min readMay 28, 2021

--

In this example we will see laravel orderBy, groupBy and limit example, here we will see diffrent type of laravel 8 query example.

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.

orderBy()

Laravel Example :

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

SQL Query:

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

Output :

All users name will be sort by descending order.

groupBy()

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();

limit()

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

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

--

--

Websolutionstuff
Websolutionstuff

Written by Websolutionstuff

I am Laravel and PHP Developer. I have also Good Knowledge of JavaScript, jQuery, Bootstrap and REST API. Visit Website: http://websolutionstuff.com/

No responses yet