Count
The count function tallies the occurrences of a specific field within a given schema, working on the documents in that field. It's employed in conjunction with the SELECT statement to retrieve the count of occurrences of the designated field across the documents within the schema.
SELECT
German,
Count(Id)
FROM
WordList:FlatTranslate
WHERE
English LIKE 'Cat%'
GROUP BY
GermanHome
The home page
SQL :: Aggregate Functions
Aggregate functions are used to evaluate multiple rows when collapsing a group of documents.
SQL :: Avg
Computes the average value of a numeric field within a specified schema.
SQL :: Group By
Group by allows you to select a result set and collapse it by a set of given fields.
SQL :: Max
Computes the maximum value of a numeric field within a specified schema.
SQL :: Min
Computes the minimum value of a numeric field within a specified schema
SQL :: Sum
Computes the total or summation value of a numeric field within a specified schema
SQL::Keywords
A breakdown of all high-level statements available via the query handler.