Course Content
Introduction to SQL
Introduction to SQL
The SUM() Function
SUM()
returns the total of all the values in a given column.
Here’s an example:
SELECT SUM(population) FROM country WHERE continent='Asia';
The SUM()
function calculates the total population of all Asian countries found in the country
table.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the sum of the surfacearea
of countries from 'Europe'.
Thanks for your feedback!
The SUM() Function
SUM()
returns the total of all the values in a given column.
Here’s an example:
SELECT SUM(population) FROM country WHERE continent='Asia';
The SUM()
function calculates the total population of all Asian countries found in the country
table.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the sum of the surfacearea
of countries from 'Europe'.
Thanks for your feedback!
The SUM() Function
SUM()
returns the total of all the values in a given column.
Here’s an example:
SELECT SUM(population) FROM country WHERE continent='Asia';
The SUM()
function calculates the total population of all Asian countries found in the country
table.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the sum of the surfacearea
of countries from 'Europe'.
Thanks for your feedback!
SUM()
returns the total of all the values in a given column.
Here’s an example:
SELECT SUM(population) FROM country WHERE continent='Asia';
The SUM()
function calculates the total population of all Asian countries found in the country
table.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query that returns the sum of the surfacearea
of countries from 'Europe'.