SELECT 
  option_type as type, 
  option_id 
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 (
    22733, 22734, 22735, 22736, 22737, 22810, 
    22808, 22807, 22809, 23580, 22741, 
    22739, 22740, 22742, 22743, 22744, 
    23582, 22745, 23581, 22397
  )

Query time 0.00051

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_options",
      "access_type": "range",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["option_id"],
      "rows": 20,
      "filtered": 100,
      "attached_condition": "cscart_product_options.option_id in (22733,22734,22735,22736,22737,22810,22808,22807,22809,23580,22741,22739,22740,22742,22743,22744,23582,22745,23581,22397)"
    },
    "table": {
      "table_name": "cscart_ult_objects_sharing",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "159",
      "used_key_parts": [
        "share_object_id",
        "share_company_id",
        "share_object_type"
      ],
      "ref": ["cscart_migrate.cscart_product_options.option_id", "const", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "cscart_ult_objects_sharing.share_object_id = cscart_product_options.option_id and cscart_ult_objects_sharing.share_object_type = 'product_options'",
      "using_index": true
    }
  }
}

Result

type option_id
S 22397
S 22733
S 22734
S 22735
S 22736
S 22737
S 22739
S 22740
S 22741
S 22742
S 22743
S 22744
S 22745
S 22807
S 22808
S 22809
S 22810
S 23580
S 23581
S 23582