DAY (Azure Stream Analytics)
Updated: April 22, 2016
Applies To: Azure
Returns an integer representing the day (day of the month) of the specified date.
Syntax
DAY ( date )
date
Is an expression that can be resolved to a datetime. date can be an expression, column expression, or string literal.
bigint
SELECT DAY (EntryTime) FROM Input TIMESTAMP BY EntryTime WHERE Toll > 5
Show: