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 (
    1561, 1705, 1704, 1609, 1935, 1936, 1929, 
    1528, 1527, 1526, 1508, 1534, 1533, 
    1841, 1531, 1529, 1530, 1843, 1532, 
    1515, 1904, 1873, 1897, 1896, 1728, 
    1607, 1608, 1606, 1703, 1578, 1396, 
    1605, 1206, 1586, 1934, 1932, 1933, 
    1656, 1542, 1640, 1543, 1655, 1927, 
    1926, 1815, 1808, 1541, 1829
  )

Query time 0.00054

JSON explain

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