SELECT 
  option_id, 
  option_type 
FROM 
  cscart_product_options 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = cscart_product_options.option_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_options'
  ) 
WHERE 
  option_id IN (
    83864, 87444, 87579, 89511, 89532, 89698, 
    89802, 90147, 90149, 90150, 90188, 
    90248, 90282, 90412, 90438, 90441, 
    90442, 90443, 90497, 90498
  )

Query time 0.00034

Explain
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE cscart_product_options range PRIMARY PRIMARY 3 20 Using where
1 SIMPLE cscart_ult_objects_sharing eq_ref PRIMARY PRIMARY 159 toolboxdigitalshop_dev.cscart_product_options.option_id,const,const 1 Using where; Using index

Result

option_id option_type
83864 S
87444 S
87579 S
89511 S
89532 S
89698 S
89802 S
90147 S
90149 S
90150 S
90188 S
90248 S
90282 S
90412 S
90438 S
90441 S
90442 S
90443 S
90497 S
90498 S