Whats wrong with this SQL? It should return results but returns nothing
SELECT `pid`
FROM `products`
LEFT JOIN `prods_to_features`
ON (`ptf_pid` = `pid`)
WHERE ( `ptf_id` = '66'
OR `ptf_id` = '67'
)
AND (`ptf_id` = '76')
Is it not possible to have the 2nd where clause for the table that has been used in the left join?