Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 693 Bytes

month-azure-stream-analytics.md

File metadata and controls

38 lines (26 loc) · 693 Bytes
title description applies_to ms.service ms.topic ms.date
MONTH (Azure Stream Analytics)
Returns an integer that represents the month of the specified date.
Azure
stream-analytics
reference
04/22/2016

MONTH (Azure Stream Analytics)

Returns an integer that represents the month of the specified date.

Syntax

MONTH ( date )  

Arguments

date

Is an expression that can be resolved to a datetime. date can be an expression, column expression, or string literal.

Return Types

bigint

Examples

SELECT MONTH (EntryTime)  
FROM Input TIMESTAMP BY EntryTime  
WHERE Toll > 5