다음을 통해 공유


UPPER(Azure 스트림 분석)

소문자 데이터를 대문자로 변환한 문자 식을 반환합니다.

Syntax

UPPER ( string_expression )  

인수

string_expression

평가할 문자열 식입니다. string_expression nvarchar(max) 형식의 상수 또는 열일 수 있습니다.

반환 형식

nvarchar(max)

예제

SELECT TollId, EntryTime, UPPER(LicensePlate) AS LicensePlate_Upper  
FROM Input  

참고 항목

LOWER(Azure 스트림 분석)