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


120

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

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

回答:


199

このコードを考えてみましょう:

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
この回答は承認されました。質問はLaravel 3に関するものであったため古くなっており、回答はLaravel 4についてのものです。以下の回答は4でも機能します。
Marc Buurke、2014

3
@lukaserat問題のクエリはANDを適用していpます。activeクエリがProductCategoryのテーブルに適用しているのに対して、= 1は製品テーブルをチェックします。または私が欠けているものがあります。
hhsadiq 2015

@hhsadiqはい、それはProductCategoryを参照しています。
lukaserat 2015

1
テーブル名を使った素晴らしいアプローチ。それは私にとってプラスです
Alwin Kesler 2016年

laravel 5.5で問題なく動作する
Oleg

53

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
)

それが近づいてきて、私はしばらくの間、同様のクエリで困惑してきました。ただし、where_in(laravel 3)には2つの引数が必要で、2番目の引数は配列です。これを正しく行う方法はありますか?また、laravel 3がfromメソッドをサポートしていないと思います。
Marc Buurke、2013年

ああ、Laravel3 ...ええ、それはそれから難しいでしょう。そして、私はLaravel3 table()ではの代わりにメソッドを使用すると思いますfrom()。L3ではそのような状況はありませんでした。申し訳ありません。
drewjoh 2013年

Illuminate \ Database \ Query \ Builderでラムダを取るwhereInメソッドがwhereSubに名前変更されているのがわかりません。
nbransby 2013年

20

キーワード「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

次のコードは私のために働きました:

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

            })
->get();

3

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

これにより、質問に書き込んだのと同じクエリが生成されます。


2

スクリプトはLaravel 5.xおよび6.xでテストされています。static閉鎖は、いくつかのケースでパフォーマンスを向上させることができます。

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();

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以降では、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
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

変数を使用する

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

-2

このオンラインツール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();
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.