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 (
    1199, 1943, 1901, 1200, 1212, 1939, 1211, 
    1568, 1535, 1566, 1567, 1032, 1470, 
    1573, 1917, 1916, 1491, 1496, 1497, 
    1498, 1570, 1571, 1572, 1347, 665, 581, 
    299, 301, 1799, 1462, 1549, 1521, 1519, 
    1517, 1522, 1523, 1518, 1516, 1520, 
    30, 31, 1545, 1180, 1205
  )

Query time 0.00055

JSON explain

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