SELECT 
  pfv.variant_id, 
  pfv.position, 
  pfvd.variant 
FROM 
  cscart_product_feature_variants AS pfv 
  INNER JOIN cscart_product_feature_variant_descriptions AS pfvd ON pfv.variant_id = pfvd.variant_id 
  AND pfvd.lang_code = 'vi' 
WHERE 
  pfv.variant_id IN (
    72885, 72884, 72883, 72882, 72881, 72880, 
    72879, 72878, 72877, 72886
  )

Query time 0.00286

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "rows": 10,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (72885,72884,72883,72882,72881,72880,72879,72878,72877,72886)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["dev_db.pfv.variant_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "pfvd.lang_code = 'vi'"
        }
      }
    ]
  }
}

Result

variant_id position variant
72877 0 Dây xanh mặt trắng
72878 0 Dây xanh mặt cam
72879 0 Màu tím
72880 0 Màu đen
72881 0 Dây đen mặt trắng
72882 0 Màu vàng
72883 0 Dây đỏ mặt xanh
72884 0 Dây đỏ 1
72885 0 Dây đỏ 2
72886 0 Dây đỏ 3