SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  products.amount, 
  descr1.product as product, 
  companies.company as company_name, 
  variation_group_products.group_id AS variation_group_id, 
  products.product_type, 
  products.parent_product_id, 
  cscart_product_review_prepared_data.average_rating average_rating, 
  cscart_product_review_prepared_data.reviews_count product_reviews_count 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  INNER JOIN cscart_product_variation_group_products AS variation_group_products ON variation_group_products.product_id = products.product_id 
  LEFT JOIN cscart_product_review_prepared_data ON cscart_product_review_prepared_data.product_id = products.product_id 
  AND cscart_product_review_prepared_data.storefront_id = 0 
WHERE 
  1 
  AND companies.status IN ('A') 
  AND (
    products.amount > 0 
    OR products.tracking = 'D'
  ) 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND variation_group_products.group_id IN (
    17197, 17041, 17200, 17199, 17233, 16733, 
    17038, 17198, 17203, 16309, 17201, 
    12220, 17281, 17249, 17186, 17202
  ) 
GROUP BY 
  products.product_id 
ORDER BY 
  NULL asc

Query time 0.01809

JSON explain

{
  "query_block": {
    "select_id": 1,
    "temporary_table": {
      "nested_loop": [
        {
          "table": {
            "table_name": "variation_group_products",
            "access_type": "range",
            "possible_keys": ["PRIMARY", "idx_group_id"],
            "key": "idx_group_id",
            "key_length": "3",
            "used_key_parts": ["group_id"],
            "rows": 84,
            "filtered": 100,
            "index_condition": "variation_group_products.group_id in (17197,17041,17200,17199,17233,16733,17038,17198,17203,16309,17201,12220,17281,17249,17186,17202)"
          }
        },
        {
          "table": {
            "table_name": "products",
            "access_type": "eq_ref",
            "possible_keys": ["PRIMARY", "status"],
            "key": "PRIMARY",
            "key_length": "3",
            "used_key_parts": ["product_id"],
            "ref": ["dev_db.variation_group_products.product_id"],
            "rows": 1,
            "filtered": 51.89157104,
            "attached_condition": "(products.amount > 0 or products.tracking = 'D') and (products.usergroup_ids = '' or find_in_set(0,products.usergroup_ids) or find_in_set(1,products.usergroup_ids)) and products.`status` = 'A'"
          }
        },
        {
          "table": {
            "table_name": "companies",
            "access_type": "eq_ref",
            "possible_keys": ["PRIMARY"],
            "key": "PRIMARY",
            "key_length": "4",
            "used_key_parts": ["company_id"],
            "ref": ["dev_db.products.company_id"],
            "rows": 1,
            "filtered": 100,
            "attached_condition": "companies.`status` = 'A'"
          }
        },
        {
          "table": {
            "table_name": "descr1",
            "access_type": "eq_ref",
            "possible_keys": ["PRIMARY", "product_id"],
            "key": "PRIMARY",
            "key_length": "11",
            "used_key_parts": ["product_id", "lang_code"],
            "ref": ["dev_db.variation_group_products.product_id", "const"],
            "rows": 1,
            "filtered": 100,
            "attached_condition": "trigcond(descr1.lang_code = 'en')"
          }
        },
        {
          "table": {
            "table_name": "cscart_product_review_prepared_data",
            "access_type": "eq_ref",
            "possible_keys": ["PRIMARY"],
            "key": "PRIMARY",
            "key_length": "7",
            "used_key_parts": ["product_id", "storefront_id"],
            "ref": ["dev_db.variation_group_products.product_id", "const"],
            "rows": 1,
            "filtered": 100
          }
        },
        {
          "table": {
            "table_name": "products_categories",
            "access_type": "ref",
            "possible_keys": ["PRIMARY", "pt"],
            "key": "pt",
            "key_length": "3",
            "used_key_parts": ["product_id"],
            "ref": ["dev_db.variation_group_products.product_id"],
            "rows": 1,
            "filtered": 100
          }
        },
        {
          "table": {
            "table_name": "cscart_categories",
            "access_type": "eq_ref",
            "possible_keys": ["PRIMARY", "p_category_id"],
            "key": "PRIMARY",
            "key_length": "3",
            "used_key_parts": ["category_id"],
            "ref": ["dev_db.products_categories.category_id"],
            "rows": 1,
            "filtered": 100,
            "using_index": true
          }
        }
      ]
    }
  }
}

Result

product_id amount product company_name variation_group_id product_type parent_product_id average_rating product_reviews_count
15019 2 Monstera Leaf Ceramic Necklace, Resembling A Monstera Leaf, Vintage Vibe, Retro Style, Versatile With Various Outfits MFOX 12220 P 0 0
40531 999 Jasmine Mini Fabric Bifold Wallet, Compact Design, Vintage Floral Patterns, Suitable for Holding Cash and Cards, Secure Button Closure Tomato Handmade 16309 P 0 0
40561 999 Jasmine Mini Fabric Bifold Wallet, Compact Design, Vintage Floral Patterns, Suitable for Holding Cash and Cards, Secure Button Closure Tomato Handmade 16309 V 40531 0
44570 999 Kingfisher Embroidery Envelope Bag, Exquisite And Simple Design, Beautiful Bird Embroidery Pattern, Compact And Convenient, Wonderful Gift Giving Smile 16733 P 0 0
44578 999 Kingfisher Embroidery Envelope Bag, Exquisite And Simple Design, Beautiful Bird Embroidery Pattern, Compact And Convenient, Wonderful Gift Giving Smile 16733 V 44570 0
47407 999 “Luonvuituoi" Cotton T-Shirt - Emotion, Breathable Cotton T-Shirt, Three-Quarter Sleeve T-Shirt, Embroidered Pattern T-Shirt E-MOTION 17038 V 47390 0
47406 999 “Luonvuituoi" Cotton T-Shirt - Emotion, Breathable Cotton T-Shirt, Three-Quarter Sleeve T-Shirt, Embroidered Pattern T-Shirt E-MOTION 17038 V 47390 0
47390 1 “Luonvuituoi" Cotton T-Shirt - Emotion, Breathable Cotton T-Shirt, Three-Quarter Sleeve T-Shirt, Embroidered Pattern T-Shirt E-MOTION 17038 P 0 0
47411 999 Leather Card Holder By Em, Exclusive Design, Durable Handmade Wallet, Soft Pu Leather Material, Distinctive Pattern, Two Compartments E-MOTION 17041 V 47393 0
47393 3 Leather Card Holder By Em, Exclusive Design, Durable Handmade Wallet, Soft Pu Leather Material, Distinctive Pattern, Two Compartments E-MOTION 17041 P 0 0
48669 999 Sunflower Cosmetic Bags, Cosmetic Bags, Cosmetic Squeeze Bags, Handmade Embroidered Bags, Handy Fabric Bags, Handmade Fabric Bags, Women's Gifts, Fashion Accessories Giving Smile 17186 P 0 0
48673 999 Sunflower Cosmetic Bags, Cosmetic Bags, Cosmetic Squeeze Bags, Handmade Embroidered Bags, Handy Fabric Bags, Handmade Fabric Bags, Women's Gifts, Fashion Accessories Giving Smile 17186 V 48669 0
48685 999 Hidden Message Scented Candle, Spa Time Scented Candle, Herbal Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Aromatherapy, Meaningful Gifts, Gift Ideas, Personalized Gifts THE MUSE 17197 P 0 0
48725 999 Hidden Message Scented Candle, Spa Time Scented Candle, Herbal Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Aromatherapy, Meaningful Gifts, Gift Ideas, Personalized Gifts THE MUSE 17197 V 48685 0
48726 999 Hidden Message Scented Candle, Spa Time Scented Candle, Herbal Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Aromatherapy, Meaningful Gifts, Gift Ideas, Personalized Gifts THE MUSE 17197 V 48685 0
48727 999 Hidden Message Scented Candle, Spa Time Scented Candle, Herbal Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Aromatherapy, Meaningful Gifts, Gift Ideas, Personalized Gifts THE MUSE 17197 V 48685 0
48686 999 Tea Time Scented Candle, White Tea Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Relaxation, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17198 P 0 0
48728 999 Tea Time Scented Candle, White Tea Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Relaxation, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17198 V 48686 0
48729 999 Tea Time Scented Candle, White Tea Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Relaxation, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17198 V 48686 0
48730 999 Tea Time Scented Candle, White Tea Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Relaxation, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17198 V 48686 0
48687 999 Yoga Time Scented Candle Palo Santo Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Meditative Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17199 P 0 0
48731 999 Yoga Time Scented Candle Palo Santo Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Meditative Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17199 V 48687 0
48732 999 Yoga Time Scented Candle Palo Santo Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Meditative Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17199 V 48687 0
48733 999 Yoga Time Scented Candle Palo Santo Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Meditative Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17199 V 48687 0
48688 999 Honeydew Melon Scented Candle Sweet Fruity Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17200 V 48735 0
48734 999 Honeydew Melon Scented Candle Sweet Fruity Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17200 V 48735 0
48735 999 Honeydew Melon Scented Candle Sweet Fruity Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17200 P 0 0
48736 999 Honeydew Melon Scented Candle Sweet Fruity Scent, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17200 V 48735 0
48689 999 Leather & Smoke Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Unisex Scent, Aromatherapy, Meaningful Gifts, Gifts For Men THE MUSE 17201 P 0 0
48737 999 Leather & Smoke Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Unisex Scent, Aromatherapy, Meaningful Gifts, Gifts For Men THE MUSE 17201 V 48689 0
48738 999 Leather & Smoke Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Unisex Scent, Aromatherapy, Meaningful Gifts, Gifts For Men THE MUSE 17201 V 48689 0
48739 999 Leather & Smoke Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Unisex Scent, Aromatherapy, Meaningful Gifts, Gifts For Men THE MUSE 17201 V 48689 0
48690 999 Mint Coconut Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17202 P 0 0
48740 999 Mint Coconut Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17202 V 48690 0
48741 999 Mint Coconut Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17202 V 48690 0
48742 999 Mint Coconut Scented Candle, Scented Candle Gift Set, Essential Oil Scented Candles, Fruit Scent, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17202 V 48690 0
48691 999 Peach Blossoms Scented Candle, Floral and Wooden Notes, Scented Candle Gift Set, Essential Oil Scented Candles, Floral Notes, Wooden Notes, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17203 P 0 0
48743 999 Peach Blossoms Scented Candle, Floral and Wooden Notes, Scented Candle Gift Set, Essential Oil Scented Candles, Floral Notes, Wooden Notes, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17203 V 48691 0
48744 999 Peach Blossoms Scented Candle, Floral and Wooden Notes, Scented Candle Gift Set, Essential Oil Scented Candles, Floral Notes, Wooden Notes, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17203 V 48691 0
48745 999 Peach Blossoms Scented Candle, Floral and Wooden Notes, Scented Candle Gift Set, Essential Oil Scented Candles, Floral Notes, Wooden Notes, Aromatherapy, Meaningful Gifts, Gift Ideas THE MUSE 17203 V 48691 0
49316 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49317 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49315 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49017 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49321 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49320 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 P 0 0
49319 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49318 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49314 50 French Rose Gift Box, Scented Gift, Romantic Gift, Luxury Gift, Scented Candle Gift, Gift For Her The Joy Box 17233 V 49320 0
49219 999 Custom Printed Cookie Gift Box, Express Your Love With Sweetness, Unique Gifts For Any Occasion, Personalized Gifts For Everyone Mana House 17249 V 49221 0
49220 999 Custom Printed Cookie Gift Box, Express Your Love With Sweetness, Unique Gifts For Any Occasion, Personalized Gifts For Everyone Mana House 17249 V 49221 0
49221 999 Custom Printed Cookie Gift Box, Express Your Love With Sweetness, Unique Gifts For Any Occasion, Personalized Gifts For Everyone Mana House 17249 P 0 0
49583 999 Mixed Crochet Flower Bouquet, A Symphony Of Handmade Beauty, Unique Crochet Gift, Handmade Crochet Home Decor Mai handmade 17281 P 0 0
49584 999 Mixed Crochet Flower Bouquet, A Symphony Of Handmade Beauty, Unique Crochet Gift, Handmade Crochet Home Decor Mai handmade 17281 V 49583 0
49585 999 Mixed Crochet Flower Bouquet, A Symphony Of Handmade Beauty, Unique Crochet Gift, Handmade Crochet Home Decor Mai handmade 17281 V 49583 0
49587 999 Mixed Crochet Flower Bouquet, A Symphony Of Handmade Beauty, Unique Crochet Gift, Handmade Crochet Home Decor Mai handmade 17281 V 49583 0
49586 999 Mixed Crochet Flower Bouquet, A Symphony Of Handmade Beauty, Unique Crochet Gift, Handmade Crochet Home Decor Mai handmade 17281 V 49583 0