Elaraente do Laravel “ONDE NÃO ESTÁ”


143

Estou tendo problemas para escrever a consulta laravel eloquent ORM.

minha consulta é

SELECT book_name,dt_of_pub,pub_lang,no_page,book_price  
FROM book_mast        
WHERE book_price NOT IN (100,200);

Agora eu quero converter esta consulta em laravel eloquent.

Respostas:


312

Criador de consultas:

DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();

Eloquente:

SomeModel::select(..)->whereNotIn('book_price', [100,200])->get();

27
selectpode ser substituído por uma matriz em get.
Marwelln

6
SO é mais rápido que pesquisar na documentação oficial!
Fer García

boa resposta. é muito útil para mim.
Yagnesh bhalala

@ Marwelln, sim, mas não funcionará com consultas complexas. Por exemplo, com o método addSelect.
Orange-Man

26

Você pode usar WhereNotIn da seguinte maneira também:

ModelName::whereNotIn('book_price', [100,200])->get(['field_name1','field_name2']);

Isso retornará a coleção de registro com campos específicos


7

Eu tive problemas ao fazer uma subconsulta até adicionar o método ->toArray()ao resultado, espero que ajude mais de uma, pois me diverti bastante procurando a solução.

Exemplo

DB::table('user')                 
  ->select('id','name')
  ->whereNotIn('id', DB::table('curses')->select('id_user')->where('id_user', '=', $id)->get()->toArray())
  ->get();

4

A maneira dinâmica de implementar whereNotIn:

 $users = User::where('status',0)->get();
    foreach ($users as $user) {
                $data[] = $user->id;
            }
    $available = User::orderBy('name', 'DEC')->whereNotIn('id', $data)->get();

1
Seu exemplo é mais complexo. User::orderBy('name', 'DESC')->where('status', '!=',0)->get()
precisa saber é o seguinte


2

Você pode usar WhereNotInda seguinte maneira:

$category=DB::table('category')
          ->whereNotIn('category_id',[14 ,15])
          ->get();`enter code here`

2

Você pode usar este exemplo para chamar dinamicamente o Where NOT IN

$ user = User :: where ('company_id', '=', 1) -> selecione ('id) -> get () -> toArray ();

$ otherCompany = User :: whereNotIn ('id', $ user) -> get ();

0

Você pode fazer o seguinte.

DB::table('book_mast') 
->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')  
->whereNotIn('book_price',[100,200]);

0

Simplesmente significa que você tem uma matriz de valores e deseja registro, exceto esses valores / registros.

você pode simplesmente passar uma matriz para a função laravel whereNotIn ().

Com o construtor de consultas

$users = DB::table('applications')
                    ->whereNotIn('id', [1,3,5]) 
                    ->get(); //will return without applications which contain this id's

Com eloquente.

$result = ModelClassName::select('your_column_name')->whereNotIn('your_column_name', ['satatus1', 'satatus2']); //return without application which contain this status.

0

Esta é a minha variante de trabalho para o Laravel 7

DB::table('user')                 
  ->select('id','name')
  ->whereNotIn('id', DB::table('curses')->where('id_user', $id)->pluck('id_user')->toArray())
  ->get();
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.