Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 711 Bytes

getarraylength-azure-stream-analytics.md

File metadata and controls

38 lines (26 loc) · 711 Bytes
title description applies_to ms.service ms.topic ms.date
GetArrayLength (Azure Stream Analytics)
Returns the length of the specified array.
Azure
stream-analytics
reference
04/22/2016

GetArrayLength (Azure Stream Analytics)

Returns the length of the specified array.

Syntax

GetArrayLength ( array_expression )  

Arguments

array_expression

Is the array expression to be evaluated as a source array. array_expression can be a column of type Array or result of another function call.

Return Types

bigint

Examples

SELECT   
    GetArrayLength(arrayField) AS arrayLength  
FROM input