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 (
    95010, 95009, 93344, 95875, 95866, 95836, 
    95164, 92917, 95835, 95801, 95800, 
    95852, 95744, 95743, 95742, 95741, 
    95701, 95547, 95538, 95302
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00083

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
89632 95164 1 S N N N 0 M A 0 Files Type Files Type
90151 95701 1 S N N N 0 M A 0 Files Type Files Type
87855 93344 1 S N N N 0 M A 0 Files Type Files Type
90189 95741 1 S N N N 0 M A 0 Files Type Files Type
90190 95742 1 S N N N 0 M A 0 Files Type Files Type
90191 95743 1 S N N N 0 M A 0 Files Type Files Type
90192 95744 1 S N N N 0 M A 0 Files Type Files Type
90246 95800 1 S N N N 0 M A 0 Files Type Files Type
90247 95801 1 S N N N 0 M A 0 Files Type Files Type
89992 95538 1 S N N N 0 M A 0 Files Type Files Type
89481 95009 1 S N N N 0 M A 0 Files Type Files Type
89482 95010 1 S N N N 0 M A 0 Files Type Files Type
90001 95547 1 S N N N 0 M A 0 Files Type Files Type
87443 92917 1 S N N N 0 M A 0 Files Type Files Type
89768 95302 1 S N N N 0 M A 0 Files Type Files Type
90280 95835 1 S N N N 0 M A 0 Files Type Files Type
90281 95836 1 S N N N 0 M A 0 Files Type Files Type
90296 95852 1 S N N N 0 M A 0 Files Type Files Type
90309 95866 1 S N N N 0 M A 0 Files Type Files Type
90318 95875 1 S N N N 0 M A 0 Files Type Files Type