SELECT 
  category_id 
FROM 
  tmall_categories 
WHERE 
  id_path LIKE '203/215/%'

Query time 0.00969

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.005077891,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_categories",
          "access_type": "range",
          "possible_keys": ["id_path"],
          "key": "id_path",
          "key_length": "767",
          "used_key_parts": ["id_path"],
          "loops": 1,
          "rows": 3,
          "cost": 0.005077891,
          "filtered": 100,
          "index_condition": "tmall_categories.id_path like '203/215/%'"
        }
      }
    ]
  }
}

Result

category_id
216
217
218