SELECT 
  category_id, 
  parent_id 
FROM 
  cscart_categories 
WHERE 
  parent_id IN(
    32, 25, 47, 51, 30, 358, 362, 42, 354, 34, 
    114, 360
  )

Query time 0.00024

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_categories",
      "access_type": "range",
      "possible_keys": ["parent"],
      "key": "parent",
      "key_length": "3",
      "used_key_parts": ["parent_id"],
      "rows": 16,
      "filtered": 100,
      "index_condition": "cscart_categories.parent_id in (32,25,47,51,30,358,362,42,354,34,114,360)"
    }
  }
}

Result

category_id parent_id
26 25
31 30
33 32
365 32
35 34
349 34
43 42
364 42
48 47
52 51
115 114
355 354
359 358
361 360
363 362