MySQL UCASE() Functions – String Functions

MySQL UCASE() Functions: Syntax

UCASE ( string );

MySQL UCASE() Functions: Description

UCASE() functions convert all the characters in a string to uppercase characters according to the current character set mapping.


UCASE() is Synonym for UPPER().

Note : This function is multibyte safe. UCASE() used within views is rewritten as UPPER().

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


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


See all MySQL String functions MySQL 8 String Functions.

You may also like...