Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
LCASE
On this page
The LCASE() function 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: