I'm trying by the way:
Code:
SELECT * FROM product_table
JOIN filter_table ON product_table.id = filter_table.product_id
JOIN session_table ON session_table.value = filter_table.value AND session_table.string = filter_table.string
GROUP BY product_table.id
Works, but gives me all products within the filters.. when I add filter no 2 and so on it still gives me all
