SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (
    35910, 35974, 35975, 35976, 35977, 35978, 
    35979, 35980, 35981, 35982, 35983, 
    35984
  ) 
  AND feature_id IN (23650, 23651) 
  AND lang_code = 'vi'

Query time 0.00923

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": 24,
          "filtered": 100,
          "attached_condition": "cscart_product_features_values.product_id in (35910,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984) and cscart_product_features_values.feature_id in (23650,23651) and cscart_product_features_values.lang_code = 'vi'",
          "using_index": true
        }
      }
    ]
  }
}

Result

product_id feature_id variant_id
35910 23650 82001
35910 23651 82007
35974 23650 82001
35974 23651 82008
35975 23650 82002
35975 23651 82007
35976 23650 82002
35976 23651 82008
35977 23650 82003
35977 23651 82007
35978 23650 82003
35978 23651 82008
35979 23650 82004
35979 23651 82007
35980 23650 82004
35980 23651 82008
35981 23650 82005
35981 23651 82007
35982 23650 82005
35982 23651 82008
35983 23650 82006
35983 23651 82007
35984 23650 82006
35984 23651 82008