Зміст курсу
Вступ до SQL
Вступ до SQL
Функція AVG()
AVG()
повертає середнє значення певного стовпця.
Давайте розглянемо приклад:
SELECT AVG(population) FROM country;
AVG()
також може визначити середнє значення для конкретних стовпців або рядків (з певними умовами). Давайте розглянемо наступний приклад:
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.
Дякуємо за ваш відгук!
Функція AVG()
AVG()
повертає середнє значення певного стовпця.
Давайте розглянемо приклад:
SELECT AVG(population) FROM country;
AVG()
також може визначити середнє значення для конкретних стовпців або рядків (з певними умовами). Давайте розглянемо наступний приклад:
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.
Дякуємо за ваш відгук!
Функція AVG()
AVG()
повертає середнє значення певного стовпця.
Давайте розглянемо приклад:
SELECT AVG(population) FROM country;
AVG()
також може визначити середнє значення для конкретних стовпців або рядків (з певними умовами). Давайте розглянемо наступний приклад:
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.
Дякуємо за ваш відгук!
AVG()
повертає середнє значення певного стовпця.
Давайте розглянемо приклад:
SELECT AVG(population) FROM country;
AVG()
також може визначити середнє значення для конкретних стовпців або рядків (з певними умовами). Давайте розглянемо наступний приклад:
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.