Mysql
 sql >> Base de données >  >> RDS >> Mysql

Groupe Laravel Eloquent par enregistrement le plus récent

Pour obtenir le dernier enregistrement par client parmi pour chaque ville en fonction de created_at vous pouvez utiliser une jointure automatique

DB::table('yourTable as t')
  ->select('t.*')
  ->leftJoin('yourTable as t1', function ($join) {
        $join->on('t.Customer','=','t1.Customer')
             ->where('t.City', '=', 't1.City')
             ->whereRaw(DB::raw('t.created_at < t1.created_at'));
   })
  ->whereNull('t1.id')
  ->get();

En SQL simple, ce serait quelque chose comme

select t.*
from yourTable t
left join yourTable t1
on t.Customer = t1.Customer
and t.City = t1.City
and t.created_at < t1.created_at
where t1.id is null

Démo

Une autre approche avec une jointure interne serait

select t.*
from yourTable t
join (
    select  Customer,City,max(ID) ID
    from yourTable
    group by Customer,City
) t1
on t.Customer = t1.Customer
and t.City = t1.City
and t.ID = t1.ID

Démo