LEN(Azure 스트림 분석)
지정한 문자열 식의 후행 공백을 제외한 문자 수를 반환합니다.
Syntax
LEN ( string_expression )
인수
string_expression
평가할 문자열 식입니다. string_expression nvarchar(max) 형식의 상수 또는 열일 수 있습니다.
반환 형식
bigint
예
SELECT TollId, EntryTime, LicensePlate, LEN (LicensePlate) AS Len_License
FROM Input TIMESTAMP BY EntryTime
WHERE Toll > 5