PostgreSQLString FunctionsUPPER
LENGTH

UPPERString Functions

LOWER

Converts a string to uppercase.

Syntax

UPPER(str)

Example

Enter values below to update the example in real time.

country_code
country
regions
SELECT UPPER(country_code) AS country
FROM regions;