SELECT 
  product_review_id 
FROM 
  tmall_product_reviews 
  LEFT JOIN tmall_users ON tmall_product_reviews.reply_user_id = tmall_users.user_id 
  LEFT JOIN tmall_companies ON tmall_users.company_id = tmall_companies.company_id 
  LEFT JOIN tmall_country_descriptions ON tmall_product_reviews.country_code = tmall_country_descriptions.code 
  AND tmall_country_descriptions.lang_code = 'en' 
WHERE 
  1 
  AND tmall_product_reviews.product_id IN (172) 
  AND tmall_product_reviews.status = 'A' 
GROUP BY 
  tmall_product_reviews.product_review_id

Query time 0.00876

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.003958237,
    "filesort": {
      "sort_key": "tmall_product_reviews.product_review_id",
      "temporary_table": {
        "nested_loop": [
          {
            "table": {
              "table_name": "tmall_product_reviews",
              "access_type": "ref",
              "possible_keys": ["idx_product_id"],
              "key": "idx_product_id",
              "key_length": "3",
              "used_key_parts": ["product_id"],
              "ref": ["const"],
              "loops": 1,
              "rows": 1,
              "cost": 0.002024411,
              "filtered": 100,
              "attached_condition": "tmall_product_reviews.product_id <=> 172 and tmall_product_reviews.`status` = 'A'"
            }
          },
          {
            "table": {
              "table_name": "tmall_users",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "3",
              "used_key_parts": ["user_id"],
              "ref": ["tmall.tmall_product_reviews.reply_user_id"],
              "loops": 1,
              "rows": 1,
              "cost": 0.001933826,
              "filtered": 100
            }
          }
        ]
      }
    }
  }
}

Result

product_review_id
16