SELECT 
  category_id 
FROM 
  cscart_categories 
WHERE 
  id_path LIKE '1192/1198/1214/%'

Query time 0.00049

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "10.16"
    },
    "table": {
      "table_name": "cscart_categories",
      "access_type": "range",
      "possible_keys": [
        "id_path"
      ],
      "key": "id_path",
      "used_key_parts": [
        "id_path"
      ],
      "key_length": "767",
      "rows_examined_per_scan": 22,
      "rows_produced_per_join": 22,
      "filtered": "100.00",
      "index_condition": "(`s2cart`.`cscart_categories`.`id_path` like '1192/1198/1214/%')",
      "cost_info": {
        "read_cost": "7.96",
        "eval_cost": "2.20",
        "prefix_cost": "10.16",
        "data_read_per_join": "77K"
      },
      "used_columns": [
        "category_id",
        "id_path"
      ]
    }
  }
}

Result

category_id
1215
1216
1217
1218
1219
1220
1221
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243