De MIN() Functie
MIN()
- deze functie retourneert de laagste waarde in een bepaalde kolom.
Laten we een voorbeeld bekijken:
SELECT MIN(population) FROM country;
Hier retourneert MIN()
de kleinste populatiewaarde in de country-tabel.
Taak
Swipe to start coding
Schrijf een SQL-query om de kleinste waarde uit de kolom surfacearea
in de tabel country
op te halen.
Oplossing
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 5. Hoofdstuk 6