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