Am I missing something? My table contains:
'country' with the value 'usa'
'school-type' with the value '4 Year University'
If I use row 2, the query returns '220'. If I use row 4, it also returns '220'. If I use both with 'OR' between them, it returns '220' twice, but if I use 'AND', it doesn't return anything. Any ideas?
SELECT post_id FROM wp_postmeta WHERE
((meta_key='school-type' AND meta_value='Community College') OR (meta_key='school-type' AND meta_value='4 Year University'))
AND
((meta_key='country' AND meta_value='usa') OR (meta_key='country' AND meta_value='canada'))