You can use CONCAT() for this
SELECT COUNT(*) AS 'Aantal reizen', CONCAT('€ ', MIN(prijs)) AS 'Laagste prijs', CONCAT('€ ', MAX(prijs)) AS 'Hoogste prijs', CONCAT('€ ', ROUND(AVG(prijs), 0)) AS 'Gemiddelde prijs' FROM reizen
From MySQL documentation on CONCAT ():
CONCAT (str1, str2, ..., STRN)
Returns the string that occurs when combining arguments. May have one or more arguments. If all arguments are non-binary strings, the result is a non-binary string. If the arguments include any binary strings, the result is a binary string. The numeric argument is converted to the equivalent non-binary string form.
source share