SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (
    50045, 50062, 50061, 50060, 50059, 50058
  ) 
  AND feature_id IN (25022, 25110) 
  AND lang_code = 'vi'

Query time 0.00216

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": "PRIMARY",
          "key_length": "6",
          "used_key_parts": ["feature_id", "product_id"],
          "rows": 12,
          "filtered": 51.5835762,
          "attached_condition": "cscart_product_features_values.product_id in (50045,50062,50061,50060,50059,50058) and cscart_product_features_values.feature_id in (25022,25110) and cscart_product_features_values.lang_code = 'vi'",
          "using_index": true
        }
      }
    ]
  }
}

Result

product_id feature_id variant_id
50045 25022 87281
50058 25022 87281
50059 25022 87281
50060 25022 87282
50061 25022 87282
50062 25022 87282
50045 25110 87658
50058 25110 87659
50059 25110 87660
50060 25110 87658
50061 25110 87659
50062 25110 87660