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