bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL SUM() Function

Example

SELECT SUM(Quantity) AS TotalItemsOrdered FROM OrderDetails;

Definition and Usage

The SUM() function calculates the sum of a set of values.

Note

NULL values are ignored.

Syntax

SUM(
expression
)

Parameter Values

ParameterDescription
expressionRequired. A field or a formula

Technical Details

Works in:From MySQL 4.0

Previous

MySQL SQRT() Function

Next

MySQL TAN() Function