bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MySQL UCASE() Function

Example

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.

Syntax

UCASE(
text
)

Parameter Values

ParameterDescription
textRequired. The string to convert

Technical Details

Works in:From MySQL 4.0

Previous

MySQL TRIM() Function

Next

MySQL UPPER() Function