SELECT 
  f.feature_id, 
  f.purpose, 
  p.product_id, 
  p.parent_product_id, 
  g.id, 
  g.code 
FROM 
  cscart_product_variation_group_features AS f 
  INNER JOIN cscart_product_variation_groups AS g ON f.group_id = g.id 
  INNER JOIN cscart_product_variation_group_products AS p ON f.group_id = p.group_id 
WHERE 
  p.product_id IN (
    9876, 10474, 10491, 10489, 10471, 9880, 
    10472, 9885, 10488, 9897, 9895, 10467, 
    9900, 10470, 10466, 10477, 9889, 10475, 
    9890, 10483, 10495, 10490, 10469, 9877, 
    9894, 9891, 10480, 9893, 9878, 9886, 
    9882, 9888, 10482, 9776, 9777, 9781, 
    9775, 9778, 9779, 9780, 9782, 9790, 
    9787, 9791, 9792, 9795, 9784, 9785, 
    9783, 9786, 9788
  )

Query time 0.00553

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "message": "Impossible WHERE noticed after reading const tables"
    }
  }
}