SELECT 
  category_id 
FROM 
  cscart_categories 
WHERE 
  id_path LIKE '416/493/%'

Query time 0.00142

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_categories",
          "access_type": "range",
          "possible_keys": ["id_path"],
          "key": "id_path",
          "key_length": "767",
          "used_key_parts": ["id_path"],
          "rows": 20,
          "filtered": 100,
          "index_condition": "cscart_categories.id_path like '416/493/%'"
        }
      }
    ]
  }
}

Result

category_id
490
491
492
494
495
496
497
498
499
500
501
502
503
504
506
507
508
509
510
511