MySQLString FunctionsUPPER
CHAR_LENGTH

UPPERString Functions

LOWER

Converts a string to uppercase.

Syntax

UPPER(str)

Example

Enter values below to update the example in real time.

customer_id
country_code
country
customers
SELECT customer_id, UPPER(country_code) AS country
FROM customers;