UPPER
Convert a string to uppercase. This function returns the string with all characters converted to uppercase.
Syntax
UPPER(str)
UCASE(str)Description
SELECT UPPER(surname), givenname FROM users ORDER BY surname;
+----------------+------------+
| UPPER(surname) | givenname |
+----------------+------------+
| ABEL | Jacinto |
| CASTRO | Robert |
| COSTA | Phestos |
| MOSCHELLA | Hippolytos |
+----------------+------------+Last updated
Was this helpful?

