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 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