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 = 'en' 
WHERE 
  pfv.variant_id IN (
    12903, 12905, 12907, 12909, 12911, 12853, 
    12913, 12915
  )

Query time 0.00024

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.02841056,
    "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": 8,
          "cost": 0.01470144,
          "filtered": 100,
          "attached_condition": "pfv.variant_id in (12903,12905,12907,12909,12911,12853,12913,12915)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["u508912950_dev_2025.pfv.variant_id", "const"],
          "loops": 8,
          "rows": 1,
          "cost": 0.01370912,
          "filtered": 100,
          "attached_condition": "pfvd.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

variant_id position variant
12853 0 Nude
12903 0 Angel Pink
12905 0 Candy Pink
12907 0 Champagne Pink
12909 0 Clear
12911 0 Glamour Pink
12913 0 Pale Pink
12915 0 Sugar Plum