Contenido del Curso
Introducción a SQL
Introducción a SQL
La función AVG()
AVG()
devuelve el valor promedio de una cierta columna.
Veamos un ejemplo:
SELECT AVG(population) FROM country;
AVG()
también puede determinar el promedio de columnas o filas específicas (con algunas condiciones). Veamos el siguiente ejemplo:
SELECT AVG(population) FROM country WHERE population < 4478500;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the average value of a surfacearea
column from the country
table.
¡Gracias por tus comentarios!
La función AVG()
AVG()
devuelve el valor promedio de una cierta columna.
Veamos un ejemplo:
SELECT AVG(population) FROM country;
AVG()
también puede determinar el promedio de columnas o filas específicas (con algunas condiciones). Veamos el siguiente ejemplo:
SELECT AVG(population) FROM country WHERE population < 4478500;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the average value of a surfacearea
column from the country
table.
¡Gracias por tus comentarios!
La función AVG()
AVG()
devuelve el valor promedio de una cierta columna.
Veamos un ejemplo:
SELECT AVG(population) FROM country;
AVG()
también puede determinar el promedio de columnas o filas específicas (con algunas condiciones). Veamos el siguiente ejemplo:
SELECT AVG(population) FROM country WHERE population < 4478500;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the average value of a surfacearea
column from the country
table.
¡Gracias por tus comentarios!
AVG()
devuelve el valor promedio de una cierta columna.
Veamos un ejemplo:
SELECT AVG(population) FROM country;
AVG()
también puede determinar el promedio de columnas o filas específicas (con algunas condiciones). Veamos el siguiente ejemplo:
SELECT AVG(population) FROM country WHERE population < 4478500;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the average value of a surfacearea
column from the country
table.