MONTH (Azure Stream Analytics)
Returns an integer that represents the month of the specified date.
SQL
MONTH ( date )
date
Is an expression that can be resolved to a datetime. date can be an expression, column expression, or string literal.
bigint
SQL
SELECT MONTH (EntryTime)
FROM Input TIMESTAMP BY EntryTime
WHERE Toll > 5