Conteúdo do Curso
Introdução ao SQL
Introdução ao SQL
A Função MAX()
MAX()
- Esta função retorna o valor mais alto em uma coluna específica. Vamos dar uma olhada no exemplo a seguir:
SELECT MAX(population) FROM country;
Explicação: Aqui MAX()
retorna o maior valor de população na tabela country
.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the largest value from the surfacearea
column in the country
table.
Obrigado pelo seu feedback!
A Função MAX()
MAX()
- Esta função retorna o valor mais alto em uma coluna específica. Vamos dar uma olhada no exemplo a seguir:
SELECT MAX(population) FROM country;
Explicação: Aqui MAX()
retorna o maior valor de população na tabela country
.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the largest value from the surfacearea
column in the country
table.
Obrigado pelo seu feedback!