MySQL UPPER Function

Example

Convert the text to upper-case:

SELECT UPPER("SQL Tutorial is FUN!");

Definition and Usage

The UPPER() function converts a string to upper-case.

Note: This function is equal to the UCASE() function. Continue reading MySQL UPPER Function

MySQL UCASE Function

Example

Convert the text to upper-case:

SELECT UCASE("SQL Tutorial is FUN!");

Definition and Usage

The UCASE() function converts a string to upper-case.

Note: This function is equal to the UPPER() function. Continue reading MySQL UCASE Function