PostgreSQL문자열 함수UPPER
LENGTH

UPPER문자열 함수

LOWER

문자열을 대문자로 변환합니다.

문법

UPPER(str)

예제

아래 값을 입력하면 예제에 즉시 반영됩니다.

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