Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns a data type name of the value.
Syntax
GetType (expression)
Arguments
expression
Is any valid expression.
Return Types
Returns data type name of the expression. The type of the returned name is nvarchar(max). Please see all supported data types in Data Types (Azure Stream Analytics).
Examples
SELECT TollId, EntryTime
FROM Input
WHERE GetType( EntryTime ) = 'datetime'