LOWER
Returns the string str with all characters changed to lowercase.
Syntax
LOWER(<str>);
Arguments
Arguments | Description |
---|---|
<str> | The string to be lowercase |
Return Type
VARCHAR
Examples
SELECT LOWER('Hello, World!')
+------------------------+
| lower('Hello, World!') |
+------------------------+
| hello, world! |
+------------------------+