Transform the text to uppercase.
| SELECT UCASE(“SQL Tutorial is FUN!”); |
The UCASE() function converts a string to uppercase.
Note: This function is equivalent to the UPPER() function.
| UCASE(text) |
|
Parameter |
Description |
|
text |
Mandatory. Specifies the string to be converted. |
| Works in: | From MySQL 4.0 |
Transform the text in “CustomerName” to uppercase.
| SELECT UCASE(CustomerName) AS UppercaseCustomerName FROM Customers; |