Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Laravel 4:Onde não existe


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