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 (
    68436, 68437, 77662, 77658, 77659, 77660, 
    77661, 77664, 77663, 77668, 77665, 
    77666, 77667
  )

Query time 0.00332

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": 13,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (68436,68437,77662,77658,77659,77660,77661,77664,77663,77668,77665,77666,77667)"
        }
      },
      {
        "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
68436 0 Cho bé trai
68437 0 Cho bé gái
77658 0 Heo hồng
77659 0 Heo xanh dương
77660 0 Heo đỏ
77661 0 Heo xanh lá
77662 0 Heo vàng
77663 0 Lọ thủy tinh We Bare Bears vàng
77664 0 Lọ thủy tinh We Bare Bears hồng
77665 0 Mẫu 1
77666 0 Mẫu 2
77667 0 Mẫu 3
77668 0 Mẫu 4