SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (
    45252, 45501, 45500, 45499, 45498, 45497, 
    45496
  ) 
  AND feature_id IN (24614) 
  AND lang_code = 'vi'

Query time 0.00542

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": 7,
          "filtered": 51.5835762,
          "attached_condition": "cscart_product_features_values.feature_id = 24614 and cscart_product_features_values.product_id in (45252,45501,45500,45499,45498,45497,45496) and cscart_product_features_values.lang_code = 'vi'",
          "using_index": true
        }
      }
    ]
  }
}

Result

product_id feature_id variant_id
45252 24614 85895
45496 24614 85896
45497 24614 85897
45498 24614 85898
45499 24614 85899
45500 24614 85900
45501 24614 85901