All pages
Powered by GitBook
1 of 1

Loading...

LOWER

Convert a string to lowercase. This function returns the string with all characters converted to lowercase.

Syntax

LOWER(str)
LCASE(str)

Description

Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European).

LCASE is a synonym for LOWER .

Examples

LOWER() (and ()) are ineffective when applied to binary strings (, , ). To perform letter case conversion, the string to a non-binary string:

This page is licensed: GPLv2, originally from

UPPER
BINARY
VARBINARY
BLOB
CONVERT
fill_help_tables.sql
SELECT LOWER('QUADRATICALLY');
+------------------------+
| LOWER('QUADRATICALLY') |
+------------------------+
| quadratically          |
+------------------------+
SET @str = BINARY 'North Carolina';

SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));
+----------------+-----------------------------------+
| LOWER(@str)    | LOWER(CONVERT(@str USING latin1)) |
+----------------+-----------------------------------+
| North Carolina | north carolina                    |
+----------------+-----------------------------------+