SELECT 
  tmall_categories.category_id, 
  tmall_categories.parent_id, 
  tmall_categories.id_path, 
  tmall_category_descriptions.category, 
  tmall_categories.position, 
  tmall_categories.status, 
  tmall_categories.company_id, 
  tmall_categories.storefront_id, 
  tmall_categories.ab__lc_catalog_image_control, 
  tmall_categories.ab__fn_category_status, 
  tmall_categories.ab__fn_label_color, 
  tmall_categories.ab__fn_label_background, 
  tmall_categories.ab__fn_use_origin_image, 
  tmall_category_descriptions.ab__fn_label_text, 
  tmall_category_descriptions.ab__fn_label_show 
FROM 
  tmall_categories 
  LEFT JOIN tmall_category_descriptions ON tmall_categories.category_id = tmall_category_descriptions.category_id 
  AND tmall_category_descriptions.lang_code = 'en' 
WHERE 
  1 = 1 
  AND (
    tmall_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, tmall_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, tmall_categories.usergroup_ids
    )
  ) 
  AND tmall_categories.status IN ('A') 
  AND tmall_categories.parent_id IN (174) 
  AND tmall_categories.id_path LIKE '166/174/%' 
  AND tmall_categories.storefront_id IN (0, 1) 
ORDER BY 
  tmall_categories.is_trash asc, 
  tmall_categories.position asc, 
  tmall_category_descriptions.category asc

Query time 0.00799

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.00538109,
    "filesort": {
      "sort_key": "tmall_categories.is_trash, tmall_categories.position, tmall_category_descriptions.category",
      "temporary_table": {
        "nested_loop": [
          {
            "table": {
              "table_name": "tmall_categories",
              "access_type": "ref",
              "possible_keys": ["c_status", "parent", "id_path"],
              "key": "parent",
              "key_length": "3",
              "used_key_parts": ["parent_id"],
              "ref": ["const"],
              "rowid_filter": {
                "range": {
                  "key": "id_path",
                  "used_key_parts": ["id_path"]
                },
                "rows": 5,
                "selectivity_pct": 4.424778761
              },
              "loops": 1,
              "rows": 5,
              "cost": 0.003447264,
              "filtered": 4.424778938,
              "attached_condition": "(tmall_categories.usergroup_ids = '' or find_in_set(0,tmall_categories.usergroup_ids) or find_in_set(1,tmall_categories.usergroup_ids)) and tmall_categories.`status` = 'A' and tmall_categories.id_path like '166/174/%' and tmall_categories.storefront_id in (0,1)"
            }
          },
          {
            "table": {
              "table_name": "tmall_category_descriptions",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY"],
              "key": "PRIMARY",
              "key_length": "9",
              "used_key_parts": ["category_id", "lang_code"],
              "ref": ["tmall.tmall_categories.category_id", "const"],
              "loops": 1,
              "rows": 1,
              "cost": 0.001933826,
              "filtered": 100,
              "attached_condition": "trigcond(tmall_category_descriptions.lang_code = 'en')"
            }
          }
        ]
      }
    }
  }
}

Result

category_id parent_id id_path category position status company_id storefront_id ab__lc_catalog_image_control ab__fn_category_status ab__fn_label_color ab__fn_label_background ab__fn_use_origin_image ab__fn_label_text ab__fn_label_show
190 174 166/174/190 LED TVs 10 A 0 0 none Y #ffffff #333333 N Y
191 174 166/174/191 Plasma TVs 20 A 0 0 none Y #ffffff #333333 N Y
193 174 166/174/193 3D TVs 30 A 0 0 none Y #ffffff #333333 N Y
194 174 166/174/194 DVD & Blu-ray Players 40 A 0 0 none Y #ffffff #333333 N Y
195 174 166/174/195 Home Theater Systems 50 A 0 0 none Y #ffffff #333333 N Y