Consider:
SELECT id_post FROM post_property WHERE id_property = 1 AND id_property = 2
Sure you're thinking to use IN()
SELECT id_post FROM post_property WHERE id_property IN (1,2)
But that give me 2 rows as result, and I just need to get all the id_post that matched with the 2 properties
Thanks a lot for your time!