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 (
    339511, 339515, 339527, 339513, 339519, 
    339510, 339518, 339508, 339713, 339525, 
    339505, 339530, 339514, 339521, 339551, 
    339501, 339499, 339721, 339495, 339494, 
    339503, 339531, 339516, 339637, 339539, 
    339509, 339636, 339538, 339492, 339506, 
    339724, 339635, 339502, 339537, 339491, 
    339540, 339524, 339493, 339536, 339520, 
    339517, 339522, 339526, 339490, 339498, 
    339528, 339497, 339507, 339512, 339523, 
    339504, 339500, 339532, 339535, 339534, 
    339496, 339533, 339529
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00144

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "266.81"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "58.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": 58,
            "rows_produced_per_join": 58,
            "filtered": "100.00",
            "index_condition": "((`webmarco`.`a`.`product_id` in (339511,339515,339527,339513,339519,339510,339518,339508,339713,339525,339505,339530,339514,339521,339551,339501,339499,339721,339495,339494,339503,339531,339516,339637,339539,339509,339636,339538,339492,339506,339724,339635,339502,339537,339491,339540,339524,339493,339536,339520,339517,339522,339526,339490,339498,339528,339497,339507,339512,339523,339504,339500,339532,339535,339534,339496,339533,339529)) and (`webmarco`.`a`.`status` = 'A'))",
            "cost_info": {
              "read_cost": "127.61",
              "eval_cost": "11.60",
              "prefix_cost": "139.21",
              "data_read_per_join": "176K"
            },
            "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": 58,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "58.00",
              "eval_cost": "11.60",
              "prefix_cost": "208.81",
              "data_read_per_join": "197K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        }
      ]
    }
  }
}