LOWER (Azure Stream Analytics)
Updated: April 22, 2016
Applies To: Azure
Returns a character expression after converting uppercase character data to lowercase.
Syntax
LOWER ( 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, LOWER(LicensePlate) AS LicensePlate_Lower FROM Input
Show: