Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Laravel 4:Wo nicht existiert

So etwas wie

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