sql >> Base de Datos >  >> RDS >> Mysql

Laravel 4:Donde no existe

Algo como

A::whereNotExists(function($query)
            {
                $query->select(DB::raw(1))
                      ->from('B')
                      ->whereRaw('A.id = B.id');
            })
            ->get();