LOWER
Returns the provided string converted to lowercase.
Usage
LOWER(text)
Parameters
text |
String |
The string to convert to lowercase. |
Returns
String
Examples
LOWER(‘Hello!’) |
hello! |
LOWER(‘this is great’) |
this is great |
LOWER(‘HelLO EVERyone’) |
hello everyone |
Remarks
N/A