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 = 'de' 
WHERE 
  cscart_images_links.object_type = 'product' 
  AND cscart_images_links.type = 'A' 
  AND cscart_images_links.object_id IN (
    651, 533, 8682, 534, 535, 593, 522, 1168, 
    4115, 528, 8683, 600
  ) 
ORDER BY 
  cscart_images_links.position, 
  cscart_images_links.pair_id

Query time 0.00075

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 12 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
1767 593 product 0 1712 A 0
1768 593 product 0 1713 A 0
3586 533 product 0 3027 A 0
3587 533 product 0 3028 A 0
3588 534 product 0 3029 A 0
3589 535 product 0 3030 A 0
11596 8682 product 0 8089 A 0
11597 8682 product 0 8090 A 0
12793 8683 product 0 8706 A 0
12794 535 product 0 8707 A 0
12810 651 product 0 8723 A 0
27179 533 product 0 22754 A 0
31619 522 product 0 27197 A 0
31620 528 product 0 27198 A 0
32560 528 product 0 28138 A 0
32561 528 product 0 28139 A 0
32562 528 product 0 28140 A 0