I want to select distinct values from only one column (the BoekingPlaatsId column) with this query:
SELECT MAX(BoekingPlaatsId), BewonerId, Naam, VoorNaam F
Sounds like you want something like
select distinct(BewonerId), Naam, Voornaam from table_name