Ok, I think I have found the solution.
To make it simple I have left out the table tabel_rentorsale, but that is now also easy to if needed.
Code:
select tabel_area.area, tabel_property_type.type, tabel_properties.area, properties.type, tabel_properties.id
from tabel_area, tabel_property_type, tabel_properties
where tabel_area.id = tabel_properties.area and tabel_property_type.id = tabel_properties.type and tabel_properties.type = 1
This will give me back all apartments in all areas together with the 'readable' string of the area.