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 (
    87455, 91515, 92251, 92408, 92409, 92410, 
    92411, 92412, 92413, 92414, 92454, 
    92455, 92463, 92464, 92465, 92466, 
    92467, 92522, 92523, 92524
  )

Query time 0.00033

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
87455 S
91515 S
92251 S
92408 S
92409 S
92410 S
92411 S
92412 S
92413 S
92414 S
92454 S
92455 S
92463 S
92464 S
92465 S
92466 S
92467 S
92522 S
92523 S
92524 S