SELECT 
  tmall_product_review_prepared_data.product_id AS product_id, 
  tmall_product_review_prepared_data.average_rating AS average_rating, 
  tmall_product_review_prepared_data.reviews_count AS reviews_count 
FROM 
  tmall_product_review_prepared_data 
WHERE 
  tmall_product_review_prepared_data.product_id IN (
    97, 100, 101, 102, 103, 104, 105, 106, 
    107, 108, 109, 110, 111, 112, 113, 114, 
    115, 116, 117, 118
  ) 
  AND tmall_product_review_prepared_data.storefront_id = 0

Query time 0.00855

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.01879428,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_product_review_prepared_data",
          "access_type": "ALL",
          "possible_keys": ["PRIMARY"],
          "loops": 1,
          "rows": 56,
          "cost": 0.01879428,
          "filtered": 35.7142868,
          "attached_condition": "tmall_product_review_prepared_data.storefront_id = 0 and tmall_product_review_prepared_data.product_id in (97,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118)"
        }
      }
    ]
  }
}