Course Content
Introduction to SQL
Introduction to SQL
The MIN() Function
MIN()
- this function returns the lowest value in a particular column.
Let’s look at an example:
SELECT MIN(population) FROM country;
Explanation: Here, MIN()
returns the smallest population value in the country table.
Swipe to show code editor
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Here's a short example of the country
table:
id | name | continent | region | surfacearea | capital | population |
1 | Japan | Asia | Eastern Asia | 377829 | Tokyo | 126714000 |
2 | Latvia | Europe | NULL | 64589 | Riga | 2424200 |
3 | Mexico | North America | Central America | 1958201 | Mexico City | 98881000 |
... | ... | ... | ... | ... | ... | ... |
15 | Malta | Europe | Southern Europe | 316 | Valletta | 380200 |
Thanks for your feedback!
The MIN() Function
MIN()
- this function returns the lowest value in a particular column.
Let’s look at an example:
SELECT MIN(population) FROM country;
Explanation: Here, MIN()
returns the smallest population value in the country table.
Swipe to show code editor
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Here's a short example of the country
table:
id | name | continent | region | surfacearea | capital | population |
1 | Japan | Asia | Eastern Asia | 377829 | Tokyo | 126714000 |
2 | Latvia | Europe | NULL | 64589 | Riga | 2424200 |
3 | Mexico | North America | Central America | 1958201 | Mexico City | 98881000 |
... | ... | ... | ... | ... | ... | ... |
15 | Malta | Europe | Southern Europe | 316 | Valletta | 380200 |
Thanks for your feedback!
The MIN() Function
MIN()
- this function returns the lowest value in a particular column.
Let’s look at an example:
SELECT MIN(population) FROM country;
Explanation: Here, MIN()
returns the smallest population value in the country table.
Swipe to show code editor
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Here's a short example of the country
table:
id | name | continent | region | surfacearea | capital | population |
1 | Japan | Asia | Eastern Asia | 377829 | Tokyo | 126714000 |
2 | Latvia | Europe | NULL | 64589 | Riga | 2424200 |
3 | Mexico | North America | Central America | 1958201 | Mexico City | 98881000 |
... | ... | ... | ... | ... | ... | ... |
15 | Malta | Europe | Southern Europe | 316 | Valletta | 380200 |
Thanks for your feedback!
MIN()
- this function returns the lowest value in a particular column.
Let’s look at an example:
SELECT MIN(population) FROM country;
Explanation: Here, MIN()
returns the smallest population value in the country table.
Swipe to show code editor
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Here's a short example of the country
table:
id | name | continent | region | surfacearea | capital | population |
1 | Japan | Asia | Eastern Asia | 377829 | Tokyo | 126714000 |
2 | Latvia | Europe | NULL | 64589 | Riga | 2424200 |
3 | Mexico | North America | Central America | 1958201 | Mexico City | 98881000 |
... | ... | ... | ... | ... | ... | ... |
15 | Malta | Europe | Southern Europe | 316 | Valletta | 380200 |