SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  cscart_product_options as a 
  LEFT JOIN cscart_product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'en' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = a.option_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_options'
  ) 
WHERE 
  a.product_id IN (
    95922, 95921, 95839, 94774, 96891, 96733, 
    95876, 96757, 96756, 96755, 96754, 
    96753, 96752, 96751, 96750, 96749, 
    96748, 96743, 96715, 96711
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00076

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE a range PRIMARY,c_status c_status 6 20 Using index condition; Using filesort
1 SIMPLE b eq_ref PRIMARY PRIMARY 9 toolboxdigitalshop_dev.a.option_id,const 1 Using where
1 SIMPLE cscart_ult_objects_sharing eq_ref PRIMARY PRIMARY 159 toolboxdigitalshop_dev.a.option_id,const,const 1 Using where; Using index

Result

option_id product_id company_id option_type inventory regexp required multiupload allowed_extensions max_file_size missing_variants_handling status position value option_name internal_option_name option_text description inner_hint incorrect_message comment
91148 96733 1 S N N N 0 M A 0 Files Type Files Type
91158 96743 1 S N N N 0 M A 0 Files Type Files Type
91163 96748 1 S N N N 0 M A 0 Files Type Files Type
91164 96749 1 S N N N 0 M A 0 Files Type Files Type
91165 96750 1 S N N N 0 M A 0 Files Type Files Type
91166 96751 1 S N N N 0 M A 0 Files Type Files Type
91167 96752 1 S N N N 0 M A 0 Files Type Files Type
91168 96753 1 S N N N 0 M A 0 Files Type Files Type
91169 96754 1 S N N N 0 M A 0 Files Type Files Type
91170 96755 1 S N N N 0 M A 0 Files Type Files Type
91171 96756 1 S N N N 0 M A 0 Files Type Files Type
91172 96757 1 S N N N 0 M A 0 Files Type Files Type
89251 94774 1 S N N N 0 M A 0 Files Type Files Type
91304 96891 1 S N N N 0 M A 0 Files Type Files Type
90284 95839 1 S N N N 0 M A 0 Files Type Files Type
90319 95876 1 S N N N 0 M A 0 Files Type Files Type
91127 96711 1 S N N N 0 M A 0 Files Type Files Type
90363 95921 1 S N N N 0 M A 0 Files Type Files Type
91131 96715 1 S N N N 0 M A 0 Files Type Files Type
90364 95922 1 S N N N 0 M A 0 Files Type Files Type