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 (
    1030, 1437, 1780, 1031, 807, 1487, 806, 
    1032, 1033, 1470, 370, 1573, 1752, 1424, 
    1423, 1744, 934, 1010, 1434, 1818, 153, 
    1290, 1291, 1292, 1917, 1916, 505, 395, 
    1795, 215, 214, 217, 212, 216, 234, 213, 
    1491, 1496, 1497, 1498, 1480, 1570, 
    1571, 1572, 1626, 1784, 1286, 1287
  )

Query time 0.00060

JSON explain

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