Sum, Average, Min/Max Queries
Total Sum
SUM() Query Format
SUM() Query FormatSELECT SUM(column_name) FROM table_name WHERE condition;Average of an Attribute
AVG() Query Format
AVG() Query FormatSELECT AVG(column_name) FROM table_name WHERE condition;Use Cases for SUM() and AVG()
SUM() and AVG()Minimum and Maximum from an Attribute
Query Format
Last updated