ARRAY_COUNT
Function
Returns the number of elements in a given array.
Syntax
ARRAY_COUNT(array)
Parameters
- array: blob
The array in question.
Return Value
The number of elements in array.Example
PRINT ARRAY_COUNT(ARRAY('A', 'B', 'C')); -- "3"