Conteúdo do Curso
Introdução ao SQL
Introdução ao SQL
A função MIN()
MIN()
- esta função retorna o menor valor em uma coluna específica.
Vamos ver um exemplo:
SELECT MIN(population) FROM country;
Explicação: Aqui, MIN()
retorna o menor valor de população na tabela de países.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Obrigado pelo seu feedback!
A função MIN()
MIN()
- esta função retorna o menor valor em uma coluna específica.
Vamos ver um exemplo:
SELECT MIN(population) FROM country;
Explicação: Aqui, MIN()
retorna o menor valor de população na tabela de países.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Obrigado pelo seu feedback!