SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  cscart_product_options as a 
  LEFT JOIN cscart_product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'en' 
WHERE 
  a.product_id IN (
    351086, 357820, 355168, 351077, 350928, 
    352284, 350881, 358174, 358110, 355223, 
    359287, 355198, 355297, 354939, 354957, 
    350734, 350607, 351711, 352237, 357090, 
    350671, 351650, 354962, 350779, 350703, 
    351106, 350746, 359110, 357259, 357300, 
    351057, 357759, 351636, 351175, 357347, 
    350953, 357277, 359145, 359304, 357197, 
    351694, 350651, 357346, 358170, 357037, 
    354908, 357721, 350612, 357356, 355260, 
    359192, 351142, 357178, 358021, 350609, 
    350712, 351693, 357906, 351515, 357121, 
    355263, 353941, 350783, 357224, 357036, 
    351119, 357930, 358213, 359096, 354948, 
    352282, 355152, 357383, 357301, 356985, 
    351489, 350662, 350702, 350921, 354942, 
    350645, 350975, 350934, 358064, 357077, 
    358182, 359333, 355170, 357736, 351691, 
    358007, 350705, 359320, 350680, 359356, 
    357189, 357883, 359171, 355337, 351626
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00138

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "460.01"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "100.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "a",
            "access_type": "range",
            "possible_keys": [
              "c_status"
            ],
            "key": "c_status",
            "used_key_parts": [
              "product_id",
              "status"
            ],
            "key_length": "6",
            "rows_examined_per_scan": 100,
            "rows_produced_per_join": 100,
            "filtered": "100.00",
            "index_condition": "((`webmarco`.`a`.`product_id` in (351086,357820,355168,351077,350928,352284,350881,358174,358110,355223,359287,355198,355297,354939,354957,350734,350607,351711,352237,357090,350671,351650,354962,350779,350703,351106,350746,359110,357259,357300,351057,357759,351636,351175,357347,350953,357277,359145,359304,357197,351694,350651,357346,358170,357037,354908,357721,350612,357356,355260,359192,351142,357178,358021,350609,350712,351693,357906,351515,357121,355263,353941,350783,357224,357036,351119,357930,358213,359096,354948,352282,355152,357383,357301,356985,351489,350662,350702,350921,354942,350645,350975,350934,358064,357077,358182,359333,355170,357736,351691,358007,350705,359320,350680,359356,357189,357883,359171,355337,351626)) and (`webmarco`.`a`.`status` = 'A'))",
            "cost_info": {
              "read_cost": "220.01",
              "eval_cost": "20.00",
              "prefix_cost": "240.01",
              "data_read_per_join": "303K"
            },
            "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"
            ]
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "webmarco.a.option_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 100,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "100.00",
              "eval_cost": "20.00",
              "prefix_cost": "360.01",
              "data_read_per_join": "339K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        }
      ]
    }
  }
}