Collect (Azure Stream Analytics)

 

Published: May 23, 2016

Updated: May 24, 2016

Returns an array with all record values from the window.

Syntax

Collect()

Collect does not take any arguments.

Array of record values.

Ordering of the values within returned array is not guaranteed

SELECT Collect() AS allEvents 
FROM Input 
GROUP BY TumblingWindow(second,10) 

Show: