Last updated 3 years ago
Was this helpful?
Get the count of rows in a group
COUNTMV(colName)
These examples are based on the .
The following query returns the documents that have a DivTailNums with more than one value:
DivTailNums
You can count the number of items in these rows by running the following query:
8
This section contains reference documentation for the COUNTMV function.
select DivTailNums from airlineStats where arraylength(DivTailNums) > 1
N7713A,N7713A
N344AA,N344AA
select COUNTMV(DivTailNums) AS value from airlineStats where arraylength(DivTailNums) > 1