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 (
    72036, 72037, 72042, 72041, 72055, 72054, 
    72056, 72058, 72057, 72059, 72065, 
    72064, 72063, 72066, 72070, 72069, 
    72071
  )

Query time 0.00197

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": 17,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (72036,72037,72042,72041,72055,72054,72056,72058,72057,72059,72065,72064,72063,72066,72070,72069,72071)"
        }
      },
      {
        "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
72036 0 Taylor
72037 0 Osaka
72041 0 Y Thanh
72042 0 Sparkle Night
72054 0 Pipa D1
72055 0 Pipa D2
72056 0 Pipa D3
72057 0 Y Thanh
72058 0 Sparkle Night
72059 0 Polka Dots
72063 0 Bamboo
72064 0 N.Y.Avenue
72065 0 River of Ganga
72066 0 Matrix D1
72069 0 Pipa D1
72070 0 Pipa D2
72071 0 Pipa D3