SELECT 
  cscart_images_links.*, 
  cscart_images.image_path, 
  cscart_common_descriptions.description AS alt, 
  cscart_images.image_x, 
  cscart_images.image_y, 
  cscart_images.image_id as images_image_id 
FROM 
  cscart_images_links 
  LEFT JOIN cscart_images ON cscart_images_links.image_id = cscart_images.image_id 
  LEFT JOIN cscart_common_descriptions ON cscart_common_descriptions.object_id = cscart_images.image_id 
  AND cscart_common_descriptions.object_holder = 'images' 
  AND cscart_common_descriptions.lang_code = 'en' 
WHERE 
  cscart_images_links.object_type = 'product' 
  AND cscart_images_links.type = 'A' 
  AND cscart_images_links.object_id IN (9854, 10012, 10011) 
ORDER BY 
  cscart_images_links.position, 
  cscart_images_links.pair_id

Query time 0.00066

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_images_links range object_id object_id 81 6 Using index condition; Using filesort
1 SIMPLE cscart_images eq_ref PRIMARY PRIMARY 3 mahm3t_cs443.cscart_images_links.image_id 1 Using where
1 SIMPLE cscart_common_descriptions eq_ref PRIMARY PRIMARY 107 mahm3t_cs443.cscart_images.image_id,const,const 1 Using where

Result

pair_id object_id object_type image_id detailed_id type position emo_md5 image_path alt image_x image_y images_image_id
28224 9854 product 0 23799 A 0
31511 10012 product 0 27089 A 0
28229 9854 product 0 23804 A 1
31512 10012 product 0 27090 A 1
28235 9854 product 0 23810 A 2
31513 10012 product 0 27091 A 2
28248 9854 product 0 23823 A 3
31514 10012 product 0 27092 A 3
28236 9854 product 0 23811 A 4
31516 10012 product 0 27094 A 4
28244 9854 product 0 23819 A 5
31515 10012 product 0 27093 A 5
27845 10012 product 0 23420 A 6
28245 9854 product 0 23820 A 6
27843 10012 product 0 23418 A 7