UPPER (Azure Stream Analytics)
Updated: April 22, 2016
Applies To: Azure
Returns a character expression with lowercase character data converted to uppercase.
Syntax
UPPER ( string_expression )
string_expression
Is the string expression to be evaluated. string_expression can be a constant or column of type nvarchar(max)
nvarchar(max)
SELECT TollId, EntryTime, UPPER(LicensePlate) AS LicensePlate_Upper FROM Input
Show: