[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/brianluft/website-sqlnotebook.com/main/array-count-func.html [Back]  [Original]

ARRAY_COUNT Function - SQL Notebook

ARRAY_COUNT Function

Returns the number of elements in a given array.

Syntax

ARRAY_COUNT(array)

Parameters

Return Value

The number of elements in array.

Example

PRINT ARRAY_COUNT(ARRAY('A', 'B', 'C'));  -- "3"

See Also


Web Proxy Viewer  |  New URL  |  Original Page