Contenido del Curso
Introducción a SQL
Introducción a SQL
La función MIN()
MIN()
- esta función devuelve el valor más bajo en una columna particular.
Veamos un ejemplo:
SELECT MIN(population) FROM country;
Explicación: Aquí, MIN()
devuelve el valor más pequeño de población en la tabla de países.
Here is the country
table we are working with:
Swipe to begin your solution
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Solución
¡Gracias por tus comentarios!
La función MIN()
MIN()
- esta función devuelve el valor más bajo en una columna particular.
Veamos un ejemplo:
SELECT MIN(population) FROM country;
Explicación: Aquí, MIN()
devuelve el valor más pequeño de población en la tabla de países.
Here is the country
table we are working with:
Swipe to begin your solution
Write an SQL query to get the smallest value from the surfacearea
column in the country
table.
Solución
¡Gracias por tus comentarios!