SELECT 
  category_id, 
  parent_id 
FROM 
  cscart_categories 
WHERE 
  parent_id IN(
    691, 692, 693, 694, 695, 696, 697, 698, 
    699, 700, 701, 702, 703, 704
  ) 
  AND category_id != 264

Query time 0.00019

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_categories range PRIMARY,parent,p_category_id parent 3 14 Using index condition; Using where