UPPER (Azure Stream Analytics)

Returns a character expression with lowercase character data converted to uppercase.

Syntax

UPPER ( string_expression )  

Arguments

string_expression

Is the string expression to be evaluated. string_expression can be a constant or column of type nvarchar(max)

Return Types

nvarchar(max)

Examples

SELECT TollId, EntryTime, UPPER(LicensePlate) AS LicensePlate_Upper  
FROM Input  

See Also

LOWER (Azure Stream Analytics)