Syntax: |
string = LCASE(string)
|
The LCASE
function converts a string to lower case. The argument
should be a string and it returns a string. The argument is not modified.
Example
function | result |
LCASE('THIS IS A STRING') |
this is a string |