SELECT 
  o.option_id as id, 
  i.option_name as name, 
  i.description, 
  i.comment, 
  o.status, 
  o.position, 
  o.alt_name, 
  o.design_file_attachment_id, 
  o.sku_column, 
  o.is_master_option, 
  o.base_variant_id, 
  o.variant_style, 
  o.variant_block_size, 
  o.variant_text_size, 
  o.variant_text_location, 
  o.variant_vertical_spacing, 
  o.visibility, 
  (
    select 
      0
  ) as is_global 
FROM 
  cscart_product_options as o 
  INNER JOIN cscart_product_options_descriptions as i 
  INNER JOIN cscart_products as p ON o.product_id = p.product_id 
  AND o.option_id = i.option_id 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = o.option_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_options'
  ) 
WHERE 
  p.product_id = 30238 
ORDER BY 
  name ASC

Query time 0.00088

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "i.option_name",
      "temporary_table": {
        "table": {
          "table_name": "p",
          "access_type": "const",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100,
          "using_index": true
        },
        "table": {
          "table_name": "o",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "c_status"],
          "key": "c_status",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100
        },
        "table": {
          "table_name": "i",
          "access_type": "ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["option_id"],
          "ref": ["cscart_migrate.o.option_id"],
          "rows": 1,
          "filtered": 100
        },
        "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.o.option_id", "const", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "cscart_ult_objects_sharing.share_object_id = o.option_id and cscart_ult_objects_sharing.share_object_type = 'product_options'",
          "using_index": true
        }
      }
    }
  }
}