SELECT 
  pfv.variant_id, 
  pfv.position, 
  pfvd.variant 
FROM 
  tmall_product_feature_variants AS pfv 
  INNER JOIN tmall_product_feature_variant_descriptions AS pfvd ON pfv.variant_id = pfvd.variant_id 
  AND pfvd.lang_code = 'en' 
WHERE 
  pfv.variant_id IN (1195, 1201, 1194, 1200, 1199, 1193)

Query time 0.01053

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.021708054,
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "loops": 1,
          "rows": 6,
          "cost": 0.011129098,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (1195,1201,1194,1200,1199,1193)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["tmall.pfv.variant_id", "const"],
          "loops": 6,
          "rows": 1,
          "cost": 0.010578956,
          "filtered": 100,
          "index_condition": "pfvd.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

variant_id position variant
1193 1 Small
1194 2 Large
1195 3 Medium
1199 2 Blue
1200 3 Black
1201 4 White