LCASE
On this page
Converts the given string to lower case.
Syntax
LCASE (str)LOWER (str)
Arguments
-
str: any string or binary object
Return Type
String
Examples
SELECT LCASE('OLÉ'), LOWER('OLÉ');
+---------------+--------------+
| LCASE('OLÉ') | LOWER('OLÉ') |
+---------------+--------------+
| olé | olé |
+---------------+--------------+
Related Topics
Last modified: February 27, 2023