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 (
    269934, 269946, 269972, 269928, 269932, 
    269930, 269960, 269961, 269945, 270059, 
    269950, 269937, 269935, 269933, 269943, 
    269941, 270093, 269981, 269982, 269962, 
    269939, 270136, 270014, 269926, 270012, 
    270097, 269979, 269980, 269824, 269936, 
    270064, 270065, 270022, 269927, 269944, 
    270016, 269963, 270021, 270013, 269942, 
    269966, 270088, 270018, 269925, 269948, 
    269929, 269938, 270137, 270138, 270020, 
    269947, 269958, 269940, 269931, 269959, 
    269978, 269964, 270132, 270133, 269983, 
    270131, 269965, 270023, 270134, 270015, 
    270087, 270017, 270057
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00101

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "312.81"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "68.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": 68,
            "rows_produced_per_join": 68,
            "filtered": "100.00",
            "index_condition": "((`webmarco`.`a`.`product_id` in (269934,269946,269972,269928,269932,269930,269960,269961,269945,270059,269950,269937,269935,269933,269943,269941,270093,269981,269982,269962,269939,270136,270014,269926,270012,270097,269979,269980,269824,269936,270064,270065,270022,269927,269944,270016,269963,270021,270013,269942,269966,270088,270018,269925,269948,269929,269938,270137,270138,270020,269947,269958,269940,269931,269959,269978,269964,270132,270133,269983,270131,269965,270023,270134,270015,270087,270017,270057)) and (`webmarco`.`a`.`status` = 'A'))",
            "cost_info": {
              "read_cost": "149.61",
              "eval_cost": "13.60",
              "prefix_cost": "163.21",
              "data_read_per_join": "206K"
            },
            "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": 68,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "68.00",
              "eval_cost": "13.60",
              "prefix_cost": "244.81",
              "data_read_per_join": "231K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        }
      ]
    }
  }
}