LOWER
LOWER ( <character-expression> )
Converts a string to all lower-case characters. Returns null if input argument is null, and the empty string if the input argument is an empty string.
Examples
Function | Result |
---|---|
LOWER('abcDEFghi123') |
abcdefghi123 |