web-dev-qa-db-ja.com

Laravelでこれを行う方法、サブクエリ

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

結合を使用してこれを行うこともできますが、パフォーマンスのためにこの形式が必要です。

95
Marc Buurke

次のコードを検討してください。

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

Fluentの高度なwheresドキュメントをご覧ください。 http://laravel.com/docs/queries#advanced-wheres

達成しようとしていることの例を次に示します。

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

これにより、以下が生成されます。

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

キーワード「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();
18
Ramesh

次のコードは私のために働いた:

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

            })
->get();
4
Aditya Singh

Eloquentをさまざまなクエリで使用して、物事を理解し、維持しやすくすることができます。

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

そして、すべてをまとめます。

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

これにより、質問で書いたものと同じクエリが生成されます。

1
Philipe
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
panqingqiang

Laravel 4.2以降では、try関係クエリを使用できます。

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

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

変数を使用する

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