Title - SUM SQL function Tags - sql function aggregate
SUM() makes it easy to add all values in a particular column.
It takes the name of a column as an argument and returns the sum of all values in that column.
SELECT SUM(downloads) FROM fake_apps;