para obter todos os que têm
meta_name
price
e propertyvalue
e meta_value
1000
e 10000
respectivamente, você precisa fazer isso. SELECT * FROM `table` WHERE (meta_name = 'price' and meta_value = '1000') OR (meta_name = 'propertyvalue' and meta_value = '10000')
isso selecionará ambos da
table
onde meta_name = 'price' and meta_value = '1000'
e meta_name = 'propertyvalue' and meta_value = '10000'