Contenido del Curso
Introducción a SQL
Introducción a SQL
La función MAX()
MAX()
- Esta función devuelve el valor más alto en una columna particular. Veamos el siguiente ejemplo:
SELECT MAX(population) FROM country;
Explicación: Aquí MAX()
devuelve el valor de población más grande en la tabla 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.
¡Gracias por tus comentarios!
La función MAX()
MAX()
- Esta función devuelve el valor más alto en una columna particular. Veamos el siguiente ejemplo:
SELECT MAX(population) FROM country;
Explicación: Aquí MAX()
devuelve el valor de población más grande en la tabla 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.
¡Gracias por tus comentarios!