SELECT 
  category_id, 
  parent_id 
FROM 
  cscart_categories 
WHERE 
  parent_id IN(
    1889, 1890, 1891, 1892, 1893, 2010, 1894, 
    1982
  )

Query time 0.00031

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": 8,
      "filtered": 100,
      "attached_condition": "cscart_categories.parent_id in (1889,1890,1891,1892,1893,2010,1894,1982)",
      "using_index": true
    }
  }
}