简体   繁体   中英

Get products that has options

I have a query and now i need to get all products that has some filter options. With Laravel you can use whereHas to get only the products that has filter options. How can i do that with a "raw" query?

Eloquent builder:

    $db = app( 'db' )
        ->table( 'products' )
        ->join( 'product_category', 'product_category.product_id', '=', 'products.id' )
        ->rightJoin( 'categories', 'categories.id', 'product_category.category_id' )
        ->leftJoin( 'brands', 'brands.id', '=', 'products.brand_id' )
        ->leftJoin( 'variants', 'variants.product_id', '=', 'products.id' )
        ->leftJoin( 'product_contents', 'product_contents.product_id', '=', 'products.id' )
        ->leftJoin( 'translations_languages', 'translations_languages.id', '=', 'product_contents' . '.language_id' )
        ->leftJoin( 'filter_option_product', 'filter_option_product.product_id', '=', 'products.id' )
        ->where( 'categories.id', '3396326' )
        ->where( 'variants.is_default', true )
        ->where( 'translations_languages.title_short_two', 'nl' )
        ->where( 'filter_option_product.option_id', 177 )
        ->whereIn( 'products.id', [ 31025567, 36117839, 36259742, 36260666 ] )
->get();

Raw query:

SELECT
    *
FROM
    `products`
INNER JOIN `product_category` ON `product_category`.`product_id` = `products`.`id`
RIGHT JOIN `categories` ON `categories`.`id` = `product_category`.`category_id`
LEFT JOIN `brands` ON `brands`.`id` = `products`.`brand_id`
LEFT JOIN `variants` ON `variants`.`product_id` = `products`.`id`
LEFT JOIN `product_contents` ON `product_contents`.`product_id` = `products`.`id`
LEFT JOIN `translations_languages` ON `translations_languages`.`id` = `product_contents`.`language_id`
LEFT JOIN `filter_option_product` ON `filter_option_product`.`product_id` = `products`.`id`
WHERE
    `categories`.`id` = 3396326
AND `variants`.`is_default` = true
AND `translations_languages`.`title_short_two` = 'nl'
AND `products`.`id` IN(31025567, 36117839, 36259742, 36260666)
AND (`filter_option_product`.`option_id` = 174 AND `filter_option_product`.`option_id` = 1)

If you want any rows that do have a row in filter_option_product , then in the where clause test for not null on a column in that table:

SELECT
    *
FROM
    `products`
INNER JOIN `product_category` ON `product_category`.`product_id` = `products`.`id`
RIGHT JOIN `categories` ON `categories`.`id` = `product_category`.`category_id`
LEFT JOIN `brands` ON `brands`.`id` = `products`.`brand_id`
LEFT JOIN `variants` ON `variants`.`product_id` = `products`.`id`
LEFT JOIN `product_contents` ON `product_contents`.`product_id` = `products`.`id`
LEFT JOIN `translations_languages` ON `translations_languages`.`id` = `product_contents`.`language_id`
LEFT JOIN `filter_option_product` ON `filter_option_product`.`product_id` = `products`.`id`
WHERE NOT(`filter_option_product`.`option_id` IS NULL)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM