SELECT 
  c.product_id AS cur_product_id, 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  product_options as a 
  LEFT JOIN product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'en' 
  LEFT JOIN product_global_option_links as c ON c.option_id = a.option_id 
WHERE 
  c.product_id IN (
    97267, 97204, 97296, 97255, 97274, 97283, 
    97231, 97242, 97209, 97198, 97265, 
    97270
  ) 
  AND a.product_id = 0 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.02104

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "45.25"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "14.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "c",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "product_id"
            ],
            "key": "product_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 28,
            "rows_produced_per_join": 28,
            "filtered": "100.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "3.13",
              "eval_cost": "2.80",
              "prefix_cost": "5.93",
              "data_read_per_join": "448"
            },
            "used_columns": [
              "option_id",
              "product_id"
            ],
            "attached_condition": "((`goimagine`.`c`.`product_id` in (97267,97204,97296,97255,97274,97283,97231,97242,97209,97198,97265,97270)) and (`goimagine`.`c`.`option_id` is not null))"
          }
        },
        {
          "table": {
            "table_name": "a",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "c_status"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id"
            ],
            "key_length": "3",
            "ref": [
              "goimagine.c.option_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "50.00",
            "cost_info": {
              "read_cost": "12.00",
              "eval_cost": "1.40",
              "prefix_cost": "20.73",
              "data_read_per_join": "42K"
            },
            "used_columns": [
              "option_id",
              "product_id",
              "company_id",
              "option_type",
              "inventory",
              "regexp",
              "required",
              "multiupload",
              "allowed_extensions",
              "max_file_size",
              "missing_variants_handling",
              "status",
              "position",
              "value",
              "google_export_name_option",
              "etsy_prop_id"
            ],
            "attached_condition": "((`goimagine`.`a`.`product_id` = 0) and (`goimagine`.`a`.`status` = 'A'))"
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "goimagine.c.option_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 13,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "9.11",
              "eval_cost": "1.40",
              "prefix_cost": "31.25",
              "data_read_per_join": "47K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        }
      ]
    }
  }
}

Result

cur_product_id option_id product_id company_id option_type inventory regexp required multiupload allowed_extensions max_file_size missing_variants_handling status position value google_export_name_option etsy_prop_id option_name internal_option_name option_text description inner_hint incorrect_message comment
97198 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97204 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97274 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97209 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97270 12473 0 2624 S Y Y N 0 M A 0 not_option Select Font Selection: Font Selection: <p>Font Selection:</p> Font Selection:
97231 12451 0 2624 T Y Y N 0 M A 0 not_option Tote Bag Personalization: Tote Bag Personalization: <p>1. Letter for the main initial:<br>2. Select thread color for the main initial:<br>3. Enter name to be embroidered:<br>4. Select thread color for the name:</p> 1. Letter for the main initial: 2. Select thread color for the main initial: 3. Enter name to be embroidered: 4. Select thread color for the name:
97242 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97267 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97255 12425 0 2624 R Y Y N 0 M A 0 not_option Hoodie Size Hoodie Size <p>Please choose your size.</p> Please choose your size.
97265 12473 0 2624 S Y Y N 0 M A 0 not_option Select Font Selection: Font Selection: <p>Font Selection:</p> Font Selection:
97198 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97274 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97270 12490 0 2624 T Y Y N 0 M A 1 not_option Personalization: Personalization: <p>Enter the Information you want on the blanket. It can be the Name or the Name & Date:</p> Enter the Information you want on the blanket. It can be the Name or the Name & Date:
97267 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97265 12474 0 2624 S Y Y N 0 M A 1 not_option Select Thread Color: Thread Colors: <p>Select Thread Color:</p> Select Thread Color:
97255 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97242 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97209 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97204 12426 0 2624 S Y Y N 0 M A 1 not_option Hoodie Color Hoodie Color <p>Please choose Hoodie color.</p> Please choose your color.
97242 12440 0 2624 T Y Y N 0 M A 2 not_option Monogram Personalization: Monogram Personalization: <p>1. Enter Monogram Font of your choice:<br>2. Enter Initials to be embroidered (First, Last, Middle):<br>3. Select thread color for the monogram:</p> 1. Enter Monogram Font of your choice: 2. Enter Initials to be embroidered (First, Last, Middle): 3. Select thread color for the monogram:
97265 12482 0 2624 T Y Y N 0 M A 2 not_option Enter Baby's Name: Enter Baby's Name: <p>Enter Baby's Name: (1 name only)</p> ​Enter Baby's Name: (1 name only)
97209 12442 0 2624 T Y Y N 0 M A 2 not_option Caduceus Personalization: Caduceus Personalization: <p>1. Thread color of the Caduceus Symbol<br>2. Font for the Name<br>3. Name to be embroidered<br>4. Thread color for the Name</p> 1. Thread color of the Caduceus Symbol 2. Font for the Name 3. Name to be embroidered 4. Thread color for the Name
97267 12485 0 2624 T Y Y N 0 M A 2 not_option Enter Nurse Personalization: Enter Nurse Personalization: <p>1. Choose thread color for the stethoscope<br>2. Enter name to be Embroidered<br>3. Choose thread color for the name</p> 1. Choose thread color for the stethoscope 2. Enter name to be Embroidered 3. Choose thread color for the name
97204 12433 0 2624 T Y Y N 0 M A 2 not_option Dispatcher Personalization: Dispatcher Personalization: <p>Enter Name to be embroidered:</p> ​Enter Name to be embroidered:
97198 12427 0 2624 T Y Y N 0 M A 2 not_option Personalization: Personalization: <p>Please ensure to provide the following details:<br><br>1. Choose thread color for the stethoscope<br>2. Enter name to be Embroidered<br>3. Choose thread color for the name</p> 1. Choose thread color for the stethoscope 2. Enter name to be Embroidered 3. Choose thread color for the name
97274 12466 0 2624 T Y Y N 0 M A 2 not_option Initials to Monogram : Initials to Monogram : <p>1. Enter Monogram Font of your choice: 2. Enter Initials to be embroidered (First, Last, Middle): 3. Select thread color for the monogram:</p> 1. Enter Monogram Font of your choice: 2. Enter Initials to be embroidered (First, Last, Middle): 3. Select thread color for the monogram: