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 (
    106331, 106330, 106329, 106328, 106327, 
    106326, 106325, 106324, 106323, 106312, 
    106311, 106309, 106308, 106307, 106306, 
    106305, 106304, 106303, 106302, 106301
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00065

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
100379 106301 1 S N N N 0 M A 0 Files Type Files Type
100380 106302 1 S N N N 0 M A 0 Files Type Files Type
100381 106303 1 S N N N 0 M A 0 Files Type Files Type
100382 106304 1 S N N N 0 M A 0 Files Type Files Type
100383 106305 1 S N N N 0 M A 0 Files Type Files Type
100384 106306 1 S N N N 0 M A 0 Files Type Files Type
100385 106307 1 S N N N 0 M A 0 Files Type Files Type
100386 106308 1 S N N N 0 M A 0 Files Type Files Type
100387 106309 1 S N N N 0 M A 0 Files Type Files Type
100388 106311 1 S N N N 0 M A 0 Files Type Files Type
100389 106312 1 S N N N 0 M A 0 Files Type Files Type
100400 106323 1 S N N N 0 M A 0 Files Type Files Type
100401 106324 1 S N N N 0 M A 0 Files Type Files Type
100402 106325 1 S N N N 0 M A 0 Files Type Files Type
100403 106326 1 S N N N 0 M A 0 Files Type Files Type
100404 106327 1 S N N N 0 M A 0 Files Type Files Type
100405 106328 1 S N N N 0 M A 0 Files Type Files Type
100406 106329 1 S N N N 0 M A 0 Files Type Files Type
100407 106330 1 S N N N 0 M A 0 Files Type Files Type
100408 106331 1 S N N N 0 M A 0 Files Type Files Type