LOWER(str)
Returns the string str
with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European).
SELECT LOWER('QUADRATICALLY'); +------------------------+ | LOWER('QUADRATICALLY') | +------------------------+ | quadratically | +------------------------+
LOWER()
(and UPPER()
) are ineffective when applied to binary strings (BINARY
, VARBINARY
, BLOB
). To perform lettercase conversion, CONVERT the string to a non-binary string:
SET @str = BINARY 'North Carolina'; SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1)); +----------------+-----------------------------------+ | LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | +----------------+-----------------------------------+ | North Carolina | north carolina | +----------------+-----------------------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/lower/