SELECT 
  tconnect_products.*, 
  tconnect_product_descriptions.*, 
  COALESCE(
    tconnect_master_products_storefront_min_price.price, 
    MIN(
      IF(
        tconnect_product_prices.percentage_discount = 0, 
        tconnect_product_prices.price, 
        tconnect_product_prices.price - (
          tconnect_product_prices.price * tconnect_product_prices.percentage_discount
        )/ 100
      )
    )
  ) as price, 
  GROUP_CONCAT(
    CASE WHEN (
      tconnect_products_categories.link_type = 'M'
    ) THEN CONCAT(
      tconnect_products_categories.category_id, 
      'M'
    ) ELSE tconnect_products_categories.category_id END 
    ORDER BY 
      tconnect_categories.storefront_id IN (0, 3) DESC, 
      (
        tconnect_products_categories.link_type = 'M'
      ) DESC, 
      tconnect_products_categories.category_position ASC, 
      tconnect_products_categories.category_id ASC
  ) as category_ids, 
  popularity.total as popularity, 
  company_descr.i18n_company as company_name, 
  tconnect_products.master_product_id, 
  tconnect_products.master_product_status, 
  tconnect_products.is_returnable, 
  tconnect_products.return_period, 
  tconnect_product_sales.amount as sales_amount, 
  tconnect_seo_names.name as seo_name, 
  tconnect_seo_names.path as seo_path, 
  MIN(point_prices.point_price) as point_price, 
  tconnect_product_package_list.enable_package_builder as enable_package_builder, 
  tconnect_product_package_list.orginal_product_price as orginal_product_price, 
  tconnect_product_package_list.apply_pck_main_price as apply_pck_main_price, 
  tconnect_product_package_list.joint_id as joint_id, 
  tconnect_discussion.type as discussion_type, 
  tconnect_product_review_prepared_data.average_rating average_rating, 
  tconnect_product_review_prepared_data.reviews_count product_reviews_count 
FROM 
  tconnect_products 
  LEFT JOIN tconnect_product_prices ON tconnect_product_prices.product_id = tconnect_products.product_id 
  AND tconnect_product_prices.lower_limit = 1 
  AND tconnect_product_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN tconnect_product_descriptions ON tconnect_product_descriptions.product_id = tconnect_products.product_id 
  AND tconnect_product_descriptions.lang_code = 'en' 
  LEFT JOIN tconnect_company_descriptions as company_descr ON company_descr.company_id = tconnect_products.company_id 
  AND company_descr.lang_code = 'en' 
  LEFT JOIN tconnect_companies as companies ON companies.company_id = tconnect_products.company_id 
  INNER JOIN tconnect_products_categories ON tconnect_products_categories.product_id = tconnect_products.product_id 
  INNER JOIN tconnect_categories ON tconnect_categories.category_id = tconnect_products_categories.category_id 
  AND tconnect_categories.storefront_id IN (0, 3) 
  AND (
    tconnect_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, tconnect_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, tconnect_categories.usergroup_ids
    )
  ) 
  AND (
    tconnect_products.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, tconnect_products.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, tconnect_products.usergroup_ids
    )
  ) 
  AND tconnect_categories.status IN ('A', 'H') 
  AND tconnect_products.status IN ('A', 'H') 
  LEFT JOIN tconnect_product_popularity as popularity ON popularity.product_id = tconnect_products.product_id 
  LEFT JOIN tconnect_master_products_storefront_min_price ON tconnect_master_products_storefront_min_price.product_id = tconnect_products.product_id 
  AND tconnect_master_products_storefront_min_price.storefront_id = 3 
  LEFT JOIN tconnect_product_sales ON tconnect_product_sales.product_id = tconnect_products.product_id 
  AND tconnect_product_sales.category_id = 197 
  LEFT JOIN tconnect_seo_names ON tconnect_seo_names.object_id = 167 
  AND tconnect_seo_names.type = 'p' 
  AND tconnect_seo_names.dispatch = '' 
  AND tconnect_seo_names.lang_code = 'en' 
  LEFT JOIN tconnect_product_point_prices as point_prices ON point_prices.product_id = tconnect_products.product_id 
  AND point_prices.lower_limit = 1 
  AND point_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN tconnect_product_package_list ON tconnect_product_package_list.product_id = tconnect_products.product_id 
  AND tconnect_product_package_list.product_id = 167 
  LEFT JOIN tconnect_discussion ON tconnect_discussion.object_id = tconnect_products.product_id 
  AND tconnect_discussion.object_type = 'P' 
  LEFT JOIN tconnect_product_review_prepared_data ON tconnect_product_review_prepared_data.product_id = tconnect_products.product_id 
  AND tconnect_product_review_prepared_data.storefront_id = 0 
WHERE 
  tconnect_products.product_id = 167 
  AND (
    companies.status IN ('A') 
    OR tconnect_products.company_id = 0
  ) 
GROUP BY 
  tconnect_products.product_id

Query time 0.00403

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.020799265,
    "nested_loop": [
      {
        "table": {
          "table_name": "tconnect_master_products_storefront_min_price",
          "access_type": "system",
          "possible_keys": ["PRIMARY"],
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "point_prices",
          "access_type": "system",
          "possible_keys": ["unique_key", "src_k"],
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "tconnect_product_package_list",
          "access_type": "system",
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "tconnect_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": "tconnect_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": 1,
          "filtered": 100,
          "unique_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "tconnect_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
        }
      },
      {
        "table": {
          "table_name": "tconnect_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
        }
      },
      {
        "table": {
          "table_name": "tconnect_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"],
          "loops": 1,
          "rows": 1,
          "cost": 0.002024411,
          "filtered": 97.28681946,
          "attached_condition": "trigcond(tconnect_product_prices.lower_limit = 1 and tconnect_product_prices.usergroup_id in (0,0,1))"
        }
      },
      {
        "table": {
          "table_name": "tconnect_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"],
          "loops": 1,
          "rows": 1,
          "cost": 0.001933826,
          "filtered": 100,
          "attached_condition": "trigcond(tconnect_product_descriptions.lang_code = 'en')"
        }
      },
      {
        "table": {
          "table_name": "company_descr",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "10",
          "used_key_parts": ["company_id", "lang_code"],
          "ref": ["const", "const"],
          "loops": 1,
          "rows": 1,
          "cost": 0.001933826,
          "filtered": 100,
          "attached_condition": "trigcond(company_descr.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"],
          "loops": 1,
          "rows": 1,
          "cost": 0.001933826,
          "filtered": 100,
          "attached_condition": "trigcond(companies.`status` = 'A')"
        }
      },
      {
        "table": {
          "table_name": "tconnect_products_categories",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "pt",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "loops": 1,
          "rows": 2,
          "cost": 0.00325828,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "tconnect_categories",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["category_id"],
          "ref": ["tconnect.tconnect_products_categories.category_id"],
          "loops": 1.945736434,
          "rows": 1,
          "cost": 0.003569029,
          "filtered": 100,
          "attached_condition": "tconnect_categories.storefront_id in (0,3) and (tconnect_categories.usergroup_ids = '' or find_in_set(0,tconnect_categories.usergroup_ids) or find_in_set(1,tconnect_categories.usergroup_ids)) and tconnect_categories.`status` in ('A','H')"
        }
      },
      {
        "table": {
          "table_name": "tconnect_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"],
          "loops": 1.945736434,
          "rows": 2,
          "cost": 0.006146067,
          "filtered": 100,
          "attached_condition": "trigcond(tconnect_seo_names.`type` = 'p' and tconnect_seo_names.dispatch = '' and tconnect_seo_names.lang_code = 'en')"
        }
      }
    ]
  }
}

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 show_videos_before_images autoplay_videos parent_product_id buy_now_url units_in_product show_price_per_x_units ab__stickers_manual_ids ab__stickers_generated_ids es_sync staff_notes return_type is_stock_split_by_warehouses master_product_id master_product_status master_product_offers_count abt__ut2_custom_location_id layout_location_id lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message promo_text unit_name ab__custom_product_h1 ab__emd_alternative_name price category_ids popularity company_name sales_amount seo_name seo_path point_price enable_package_builder orginal_product_price apply_pck_main_price joint_id discussion_type average_rating product_reviews_count
167 H0167T7K2E P A 1 599.95 5 0.000 0 0 0 0.00 0 1328644800 1383894566 0 N N N N Y N N Y 10 0 N 6 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;} N N 0 0.000 1.000 1 both N 0 A 0 0 0 en D3100 + 18-55 VR Lens Kit <p> Beautiful pictures–Amazing movies–Incredibly Easy with the 14 Megapixel DX sensor and learn-as-you-grow Guide Mode. </p> <p class="product-promo-text"><span class="product-promo-header">FREE US shipping over $100!</span><span class="product-promo-body">Orders within next 2 days will be shipped on Monday</span></p> 549.95000000 197M,198,199 504 CS-Cart d3100-18-55-vr-lens-kit 166/196/197 B 5.00 1