Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel Query Builder where max id

How do I accomplish this in Laravel 4.1 Query Builder?

select * from orders where id = (select max(`id`) from orders) 

I tried this, working but can't get the eloquent feature.

DB::select(DB::raw('select * from orders where id = (select max(`id`) from orders)')); 

Any idea to make it better?

like image 680
Shiro Avatar asked Apr 15 '14 01:04

Shiro


People also ask

How to get max id from table in sql in Laravel?

You should be able to perform a select on the orders table, using a raw WHERE to find the max( id ) in a subquery, like this: \DB::table('orders')->where('id', \DB::raw("(select max(`id`) from orders)"))->get();


2 Answers

You should be able to perform a select on the orders table, using a raw WHERE to find the max(id) in a subquery, like this:

 \DB::table('orders')->where('id', \DB::raw("(select max(`id`) from orders)"))->get(); 

If you want to use Eloquent (for example, so you can convert your response to an object) you will want to use whereRaw, because some functions such as toJSON or toArray will not work without using Eloquent models.

 $order = Order::whereRaw('id = (select max(`id`) from orders)')->get(); 

That, of course, requires that you have a model that extends Eloquent.

 class Order extends Eloquent {} 

As mentioned in the comments, you don't need to use whereRaw, you can do the entire query using the query builder without raw SQL.

 // Using the Query Builder  \DB::table('orders')->find(\DB::table('orders')->max('id'));   // Using Eloquent  $order = Order::find(\DB::table('orders')->max('id')); 

(Note that if the id field is not unique, you will only get one row back - this is because find() will only return the first result from the SQL server.).

like image 110
Tim Groeneveld Avatar answered Sep 22 '22 06:09

Tim Groeneveld


Just like the docs say

DB::table('orders')->max('id'); 
like image 35
Ohgodwhy Avatar answered Sep 21 '22 06:09

Ohgodwhy