Aggregate Functions
COUNT
Returns the number of rows matching the query criteria.
SELECT COUNT(*) FROM Lists WHERE = ''
COUNT
Returns the number of rows matching the query criteria.
SELECT COUNT(AnnualRevenue) FROM Lists WHERE = ''
COUNT(DISTINCT)
Returns the number of distinct, non-null field values matching the query criteria.
SELECT COUNT(DISTINCT Name) AS DistinctValues FROM Lists WHERE = ''
AVG
Returns the average of the column values.
SELECT Contact_Company, AVG(AnnualRevenue) FROM Lists WHERE = '' GROUP BY Contact_Company
MIN
Returns the minimum column value.
SELECT MIN(AnnualRevenue), Contact_Company FROM Lists WHERE = '' GROUP BY Contact_Company
MAX
Returns the maximum column value.
SELECT Contact_Company, MAX(AnnualRevenue) FROM Lists WHERE = '' GROUP BY Contact_Company
SUM
Returns the total sum of the column values.
SELECT SUM(AnnualRevenue) FROM Lists WHERE = ''