SELECT 
  netting_products.*, 
  netting_product_descriptions.*, 
  COALESCE(
    netting_master_products_storefront_min_price.price, 
    MIN(
      IF(
        netting_product_prices.percentage_discount = 0, 
        netting_product_prices.price, 
        netting_product_prices.price - (
          netting_product_prices.price * netting_product_prices.percentage_discount
        )/ 100
      )
    )
  ) as price, 
  GROUP_CONCAT(
    CASE WHEN (
      netting_products_categories.link_type = 'M'
    ) THEN CONCAT(
      netting_products_categories.category_id, 
      'M'
    ) ELSE netting_products_categories.category_id END 
    ORDER BY 
      netting_categories.storefront_id IN (0, 1) DESC, 
      (
        netting_products_categories.link_type = 'M'
      ) DESC, 
      netting_products_categories.category_position ASC, 
      netting_products_categories.category_id ASC
  ) as category_ids, 
  popularity.total as popularity, 
  companies.company as company_name, 
  netting_products.master_product_id, 
  netting_products.master_product_status, 
  netting_products.is_returnable, 
  netting_products.return_period, 
  netting_product_sales.amount as sales_amount, 
  netting_seo_names.name as seo_name, 
  netting_seo_names.path as seo_path, 
  netting_booking_and_reservation.booking_type as booking_type, 
  netting_booking_and_reservation.date_from as date_from, 
  netting_booking_and_reservation.date_to as date_to, 
  netting_booking_and_reservation.book_time as book_time, 
  netting_booking_and_reservation.break_time as break_time, 
  netting_booking_and_reservation.week_data as week_data, 
  netting_booking_and_reservation.apply_same_slots as apply_same_slots, 
  netting_discussion.type as discussion_type, 
  netting_product_review_prepared_data.average_rating average_rating, 
  netting_product_review_prepared_data.reviews_count product_reviews_count 
FROM 
  netting_products 
  LEFT JOIN netting_product_prices ON netting_product_prices.product_id = netting_products.product_id 
  AND netting_product_prices.lower_limit = 1 
  AND netting_product_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN netting_product_descriptions ON netting_product_descriptions.product_id = netting_products.product_id 
  AND netting_product_descriptions.lang_code = 'en' 
  LEFT JOIN netting_companies as companies ON companies.company_id = netting_products.company_id 
  INNER JOIN netting_products_categories ON netting_products_categories.product_id = netting_products.product_id 
  INNER JOIN netting_categories ON netting_categories.category_id = netting_products_categories.category_id 
  AND netting_categories.storefront_id IN (0, 1) 
  AND (
    netting_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, netting_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, netting_categories.usergroup_ids
    )
  ) 
  AND (
    netting_products.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, netting_products.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, netting_products.usergroup_ids
    )
  ) 
  AND netting_categories.status IN ('A', 'H') 
  AND netting_products.status IN ('A', 'H') 
  LEFT JOIN netting_product_popularity as popularity ON popularity.product_id = netting_products.product_id 
  LEFT JOIN netting_master_products_storefront_min_price ON netting_master_products_storefront_min_price.product_id = netting_products.product_id 
  AND netting_master_products_storefront_min_price.storefront_id = 1 
  LEFT JOIN netting_product_sales ON netting_product_sales.product_id = netting_products.product_id 
  AND netting_product_sales.category_id = 382 
  LEFT JOIN netting_seo_names ON netting_seo_names.object_id = 408 
  AND netting_seo_names.type = 'p' 
  AND netting_seo_names.dispatch = '' 
  AND netting_seo_names.lang_code = 'en' 
  LEFT JOIN netting_booking_and_reservation ON netting_booking_and_reservation.product_id = netting_products.product_id 
  AND netting_booking_and_reservation.product_id = 408 
  LEFT JOIN netting_discussion ON netting_discussion.object_id = netting_products.product_id 
  AND netting_discussion.object_type = 'P' 
  LEFT JOIN netting_product_review_prepared_data ON netting_product_review_prepared_data.product_id = netting_products.product_id 
  AND netting_product_review_prepared_data.storefront_id = 0 
WHERE 
  netting_products.product_id = 408 
  AND (
    companies.status IN ('A') 
    OR netting_products.company_id = 0
  ) 
GROUP BY 
  netting_products.product_id

Query time 0.00173

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "netting_master_products_storefront_min_price",
          "access_type": "system",
          "possible_keys": ["PRIMARY"],
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "netting_products",
          "access_type": "const",
          "possible_keys": ["PRIMARY", "status"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "popularity",
          "access_type": "const",
          "possible_keys": ["PRIMARY", "total"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "netting_product_sales",
          "access_type": "const",
          "possible_keys": ["PRIMARY", "pa"],
          "key": "PRIMARY",
          "key_length": "6",
          "used_key_parts": ["category_id", "product_id"],
          "ref": ["const", "const"],
          "rows": 0,
          "filtered": 0,
          "unique_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "netting_product_prices",
          "access_type": "ref",
          "possible_keys": [
            "usergroup",
            "product_id",
            "lower_limit",
            "usergroup_id"
          ],
          "key": "product_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 99.56521606,
          "attached_condition": "trigcond(netting_product_prices.lower_limit = 1 and netting_product_prices.usergroup_id in (0,0,1))"
        }
      },
      {
        "table": {
          "table_name": "netting_product_descriptions",
          "access_type": "const",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["product_id", "lang_code"],
          "ref": ["const", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(netting_product_descriptions.lang_code = 'en')"
        }
      },
      {
        "table": {
          "table_name": "companies",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["company_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(companies.`status` = 'A')"
        }
      },
      {
        "table": {
          "table_name": "netting_products_categories",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "pt",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 2,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "netting_categories",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["category_id"],
          "ref": ["pucuda_cscart.netting_products_categories.category_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "netting_categories.storefront_id in (0,1) and (netting_categories.usergroup_ids = '' or find_in_set(0,netting_categories.usergroup_ids) or find_in_set(1,netting_categories.usergroup_ids)) and netting_categories.`status` in ('A','H')"
        }
      },
      {
        "table": {
          "table_name": "netting_seo_names",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "dispatch"],
          "key": "PRIMARY",
          "key_length": "206",
          "used_key_parts": ["object_id", "type", "dispatch", "lang_code"],
          "ref": ["const", "const", "const", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(netting_seo_names.`type` = 'p' and netting_seo_names.dispatch = '' and netting_seo_names.lang_code = 'en')"
        }
      },
      {
        "table": {
          "table_name": "netting_booking_and_reservation",
          "access_type": "const",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408))) and trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408)) and trigcond(<cache>(408 = 408))"
        }
      },
      {
        "table": {
          "table_name": "netting_discussion",
          "access_type": "const",
          "possible_keys": ["object_id"],
          "key": "object_id",
          "key_length": "6",
          "used_key_parts": ["object_id", "object_type"],
          "ref": ["const", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(netting_discussion.object_type = 'P')"
        }
      },
      {
        "table": {
          "table_name": "netting_product_review_prepared_data",
          "access_type": "const",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "7",
          "used_key_parts": ["product_id", "storefront_id"],
          "ref": ["const", "const"],
          "rows": 1,
          "filtered": 100
        }
      }
    ]
  }
}

Result

product_id product_code product_type status company_id list_price amount weight length width height shipping_freight low_avail_limit timestamp updated_timestamp usergroup_ids is_edp edp_shipping unlimited_download tracking free_shipping zero_price_action is_pbp is_op is_oper is_returnable return_period avail_since out_of_stock_actions localization min_qty max_qty qty_step list_qty_count tax_ids age_verification age_limit options_type exceptions_type details_layout shipping_params facebook_obj_type parent_product_id buy_now_url units_in_product show_price_per_x_units ebay_template_id product_hash ebay_price package_type ebay_status ebay_override_price master_product_id master_product_status master_product_offers_count is_stock_split_by_warehouses staff_notes designable rf_price_day rf_price_week rf_price_month rf_price_pledge cp_allow_installment_payments cp_is_installment_product upc_code tax_code is_rfq lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message promo_text unit_name ebay_title ebay_description override price category_ids popularity company_name sales_amount seo_name seo_path booking_type date_from date_to book_time break_time week_data apply_same_slots discussion_type average_rating product_reviews_count
408 P A 20 29.99 100 0.000 0 0 0 0.00 0 1736257930 1739372392 0 N N N N Y N N N 10 0 N N 0 default a:5:{s:16:"min_items_in_box";i:0;s:16:"max_items_in_box";i:0;s:10:"box_length";i:0;s:9:"box_width";i:0;s:10:"box_height";i:0;} activity 0 0.000 0.000 0 252556261 Letter N 0 A 0 N N 0.000 0.000 0.000 0.000 N N N en Book: Life is a Journey- Art, Antiques, and its Tool cabinet <p><span style="color: var(--redactor2-text-color);">From the owner of Pucuda Leading Edge and the creator of Netting.com comes “Life is a Journey: Art, Antiques, Design and it's Tool Cabinet.”</span></p> <p>Join John on his Journey through his childhood and upbringing that gave him is love of woodworking. Take a look inside his Stone Heron Tool Cabinet and see some of his rare antique collection.</p> <p>PREORDER NOW FOR SHIPMENT STARTING IN MARCH AND SAVE</p> <p>Save now by preordering!&nbsp;</p> 37.00000000 382M,455 100127 netting.com book-life-is-a-journey-art-antiques-and-its-tool-cabinet 382 D