SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (
    26887, 32654, 32653, 32655, 32656, 32657
  ) 
  AND feature_id IN (23350) 
  AND lang_code = 'vi'

Query time 0.00278

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_features_values",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "idx_product_feature_variant_id",
          "key_length": "12",
          "used_key_parts": ["product_id", "feature_id", "lang_code"],
          "rows": 6,
          "filtered": 100,
          "attached_condition": "cscart_product_features_values.feature_id = 23350 and cscart_product_features_values.product_id in (26887,32654,32653,32655,32656,32657) and cscart_product_features_values.lang_code = 'vi'",
          "using_index": true
        }
      }
    ]
  }
}

Result

product_id feature_id variant_id
26887 23350 81002
32653 23350 81003
32654 23350 81004
32655 23350 81005
32656 23350 81006
32657 23350 81007