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 (
    76693, 76691, 76690, 76692, 82254, 82255, 
    82258, 82259, 83767, 83768, 83766, 
    83765
  )

Query time 0.00334

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": 12,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (76693,76691,76690,76692,82254,82255,82258,82259,83767,83768,83766,83765)"
        }
      },
      {
        "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
76690 0 Tranh Hoa đỏ "Never say Never"
76691 0 Tranh Hoa hồng "Remember why you started"
76692 0 Tranh hoa Cam " Stop waiting for tomorrow, start now"
76693 0 Tranh Hoa hồng "Darling You are magic"
82254 1 A4
82255 2 A3
82258 1 A4
82259 2 A3
83765 1 Model 1
83766 2 Model 2
83767 3 Model 3
83768 4 Model 4