try_validate_utf8
기능
적용 대상: Databricks Runtime 15.4 이상
유효한 UTF-8 문자열에 해당하는 경우 또는 NULL
그렇지 않은 경우 입력 값을 반환합니다.
구문
try_validate_utf8(strExpr)
인수
strExpr
:STRING
식입니다.
반품
STRING
유효한 UTF-8 문자열을 나타내는 경우와 바이트 단위로 같거나 NULL
그렇지 않은 경우와 같은 strExpr
값입니다.
입력이 유효한 UTF-8 문자열이 아닌 경우 오류를 반환하려면 validate_utf8 함수를 사용합니다.
예제
– Simple example taking a valid string as input.
> SELECT try_validate_utf8('Spark')
Spark
– Simple example taking a valid collated string as input.
> SELECT try_validate_utf8('SQL' COLLATE UTF8_LCASE)
SQL
– Simple example taking a valid hexadecimal string as input.
> SELECT try_validate_utf8(x'61')
a
– Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT try_validate_utf8(x'80')
NULL
- Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT try_validate_utf8(x'61C262')
NULL