MySQL LCASE() Functions – String Functions

MySQL LCASE() Functions: Syntax

LCASE ( string );

MySQL LCASE() Functions: Description

LCASE() functions converts all the characters in a string to lowercase characters according to the current character set mapping.


LCASE() is Synonym for LOWER().

Note : This function is multibyte safe. LCASE() used within views is rewritten as LOWER().

See all MySQL String functions MySQL 8 String Functions.


Related articles : CONCAT(), CONCAT_WS() , UPPER(), LOWER(), UCASE().


PHP Related articles : STRTOLOWER(), STRTOUPPER(), LCFIRST(), UCFIRST(), UCWORDS(), PHP STRING FUNCTIONS().


 

You may also like...