lower
lower(string
)
The LOWER function has the following argument:
string
The string to converted to lower case.
Transpose the input string by replacing all alphabetic characters to lower case. Non-numeric characters are copied unchanged.
Formula |
Description |
Result |
---|---|---|
lower('Hello World') |
Return the lower case version of 'Hello World' |
'hello world' |
lower('ABC as easy as 123') |
Return the lower case version of the string |
'abc as easy as 123' |