Come farlo in Laravel, sottoquery dove si trova


120

Come posso fare questa query in Laravel:

SELECT 
    `p`.`id`,
    `p`.`name`, 
    `p`.`img`, 
    `p`.`safe_name`, 
    `p`.`sku`, 
    `p`.`productstatusid` 
FROM `products` p 
WHERE `p`.`id` IN (
    SELECT 
        `product_id` 
    FROM `product_category`
    WHERE `category_id` IN ('223', '15')
)
AND `p`.`active`=1

Potrei farlo anche con un join, ma ho bisogno di questo formato per le prestazioni.

Risposte:


199

Considera questo codice:

Products::whereIn('id', function($query){
    $query->select('paper_type_id')
    ->from(with(new ProductCategory)->getTable())
    ->whereIn('category_id', ['223', '15'])
    ->where('active', 1);
})->get();

1
Accettata questa risposta, la domanda è obsoleta poiché riguardava Laravel 3 e le risposte in arrivo sono per Laravel 4, la risposta di seguito funzionerà anche per 4.
Marc Buurke

3
@lukaserat la query in questione applica l'AND p. active= 1 controllo sulle tabelle dei prodotti mentre la tua query lo applica alla tabella di ProductCategory .... giusto ?? o c'è qualcosa che mi manca ..?
hhsadiq

@hhsadiq sì, si riferisce a ProductCategory.
lukaserat

1
Bel approccio con il nome del tavolo. È un vantaggio per me
Alwin Kesler

Funziona bene per Laravel 5.5
Oleg Shakhov

53

Dai un'occhiata alla documentazione avanzata su dove si trova Fluent: http://laravel.com/docs/queries#advanced-wheres

Ecco un esempio di ciò che stai cercando di ottenere:

DB::table('users')
    ->whereIn('id', function($query)
    {
        $query->select(DB::raw(1))
              ->from('orders')
              ->whereRaw('orders.user_id = users.id');
    })
    ->get();

Questo produrrà:

select * from users where id in (
    select 1 from orders where orders.user_id = users.id
)

Questo si avvicina e da un po 'di tempo sono sconcertato da domande simili. Ma where_in (laravel 3) richiede 2 argomenti, il secondo è un array. Qualche idea su come farlo bene? Inoltre, non credo che laravel 3 supporti il ​​metodo from.
Marc Buurke

Ah, Laravel3 ... Sì, allora sarà difficile. E penso che in Laravel3 usi il table()metodo invece del from(). Non ho avuto quella situazione in L3, mi dispiace!
sorteggio

Non riesco a vedere un metodo whereIn che accetta un lambda in Illuminate \ Database \ Query \ Builder, è stato rinominato whereSub?
nbransby

20

Puoi utilizzare la variabile utilizzando la parola chiave "use ($ category_id)"

$category_id = array('223','15');
Products::whereIn('id', function($query) use ($category_id){
   $query->select('paper_type_id')
     ->from(with(new ProductCategory)->getTable())
     ->whereIn('category_id', $category_id )
     ->where('active', 1);
})->get();

5

Il seguente codice ha funzionato per me:

$result=DB::table('tablename')
->whereIn('columnName',function ($query) {
                $query->select('columnName2')->from('tableName2')
                ->Where('columnCondition','=','valueRequired');

            })
->get();

3

Puoi usare Eloquent in diverse query e rendere le cose più facili da capire e mantenere:

$productCategory = ProductCategory::whereIn('category_id', ['223', '15'])
                   ->select('product_id'); //don't need ->get() or ->first()

e poi mettiamo tutti insieme:

Products::whereIn('id', $productCategory)
          ->where('active', 1)
          ->select('id', 'name', 'img', 'safe_name', 'sku', 'productstatusid')
          ->get();//runs all queries at once

Questo genererà la stessa query che hai scritto nella tua domanda.


2

Lo script è testato in Laravel 5.xe 6.x. La staticchiusura può migliorare le prestazioni in alcuni casi.

Product::select(['id', 'name', 'img', 'safe_name', 'sku', 'productstatusid'])
            ->whereIn('id', static function ($query) {
                $query->select(['product_id'])
                    ->from((new ProductCategory)->getTable())
                    ->whereIn('category_id', [15, 223]);
            })
            ->where('active', 1)
            ->get();

genera l'SQL

SELECT `id`, `name`, `img`, `safe_name`, `sku`, `productstatusid` FROM `products` 
WHERE `id` IN (SELECT `product_id` FROM `product_category` WHERE 
`category_id` IN (?, ?)) AND `active` = ?

1

Laravel 4.2 e versioni successive, possono utilizzare l'interrogazione delle relazioni di prova: -

Products::whereHas('product_category', function($query) {
$query->whereIn('category_id', ['223', '15']);
});

public function product_category() {
return $this->hasMany('product_category', 'product_id');
}

0
Product::from('products as p')
->join('product_category as pc','p.id','=','pc.product_id')
->select('p.*')
->where('p.active',1)
->whereIn('pc.category_id', ['223', '15'])
->get();

0

utilizzando una variabile

$array_IN=Dev_Table::where('id',1)->select('tabl2_id')->get();
$sel_table2=Dev_Table2::WhereIn('id',$array_IN)->get();

-2

Prova questo strumento online sql2builder

DB::table('products')
    ->whereIn('products.id',function($query) {
                            DB::table('product_category')
                            ->whereIn('category_id',['223','15'])
                            ->select('product_id');
                        })
    ->where('products.active',1)
    ->select('products.id','products.name','products.img','products.safe_name','products.sku','products.productstatusid')
    ->get();
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.