I want to select distinct values from only one column (the BoekingPlaatsId column) with this query:
SELECT MAX(BoekingPlaatsId), BewonerId, Naam, VoorNaam F
DISTINCT should work if you just want the user names:
DISTINCT
SELECT DISTINCT BewonerId, Naam, Voornaam FROM TBL
but if you need the minimum ID values, group by the names...
SELECT MIN(BoekingPlaatsId), MIN(BewonerId), Naam, Voornaam FROM TBL GROUP BY Naam, Voornaam