SELECT 
  a.variant_id, 
  a.position, 
  a.modifier, 
  a.modifier_type, 
  a.weight_modifier, 
  a.weight_modifier_type, 
  b.variant_name 
FROM 
  cscart_product_option_variants as a 
  LEFT JOIN cscart_product_option_variants_descriptions as b ON a.variant_id = b.variant_id 
  AND b.lang_code = 'en' 
WHERE 
  a.option_id = 320 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00128

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "43.20"
    },
    "ordering_operation": {
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "a",
            "access_type": "ref",
            "possible_keys": [
              "status",
              "option_id",
              "option_id_2"
            ],
            "key": "option_id",
            "used_key_parts": [
              "option_id",
              "status"
            ],
            "key_length": "6",
            "ref": [
              "const",
              "const"
            ],
            "rows_examined_per_scan": 18,
            "rows_produced_per_join": 18,
            "filtered": "100.00",
            "index_condition": "((`webmarco`.`a`.`option_id` <=> 320) and (`webmarco`.`a`.`status` <=> 'A'))",
            "cost_info": {
              "read_cost": "18.00",
              "eval_cost": "3.60",
              "prefix_cost": "21.60",
              "data_read_per_join": "864"
            },
            "used_columns": [
              "variant_id",
              "option_id",
              "position",
              "modifier",
              "modifier_type",
              "weight_modifier",
              "weight_modifier_type",
              "status"
            ]
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "webmarco.a.variant_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 18,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "18.00",
              "eval_cost": "3.60",
              "prefix_cost": "43.20",
              "data_read_per_join": "13K"
            },
            "used_columns": [
              "variant_id",
              "lang_code",
              "variant_name"
            ]
          }
        }
      ]
    }
  }
}

Result

variant_id position modifier modifier_type weight_modifier weight_modifier_type variant_name
1402 1 0.000 A 0.000 A 1
1403 2 0.000 A 0.000 A 2
1404 3 0.000 A 0.000 A 3
1405 4 0.000 A 0.000 A 4
2029 5 0.000 A 0.000 A 5
2030 6 0.000 A 0.000 A 6
2031 7 0.000 A 0.000 A 7
2032 8 0.000 A 0.000 A 8
2033 9 0.000 A 0.000 A 9
2034 10 0.000 A 0.000 A 10
2035 11 0.000 A 0.000 A 11
2036 12 0.000 A 0.000 A 12
2037 13 0.000 A 0.000 A 13
2038 14 0.000 A 0.000 A 14
2039 15 0.000 A 0.000 A 15
2040 16 0.000 A 0.000 A 16
2041 17 0.000 A 0.000 A 17
2042 18 0.000 A 0.000 A 18