Hash160 - 스크립트 및 차트 함수
Hash160() returns a 160-bit hash of the combined input expression values. The result is a 27-character string. Hash160() returns a 160-bit hash value of the combined input expression values. The result is a 27-character string. 해시 값은 고객 이름, 사회보장번호, 계좌번호와 같은 PII(개인 식별 정보)를 마스킹하는 데 유용합니다.
구문:
Hash160( expr{, expression})
반환 데이터 유형: 문자열
Example: Chart expressions Hash160 ( 'abc', 'xyz', '123' ) Returns 'MA&5]6+3=:>;>G%S<U*S2I:`=X*'. Hash160 ( Region, Year, Month )
Note: Region, Year, and Month are table fields.
Returns 'G7*=6GKPJ(Z+)^KM?<$'AI.)?U$'.
로드 스크립트 및 결과 Hash_160:
Load *,
Hash160(Region, Year, Month) as Hash160;
Load * inline [
Region, Year, Month
abc, xyz, 123
EU, 2022, 01
UK, 2022, 02
US, 2022, 02 ];
결과
지역 연도 월 Hash160 abc xyz 123 MA&5]6+3=:>;>G%S<U*S2I:`=X* EU 2022 01 B40^K&[T@!;VB'XR]<5=//_F853 UK 2022 02 O5T;+1?[B&"F&1//MA[MN!T"FWZ US 2022 02 C6@#]4#_G-(]J7EQY#KRW`@KF+W
Example: Load script Hash_160: Load *, Hash160(Region, Year, Month) as Hash160; Load * inline [ Region, Year, Month abc, xyz, 123 EU, 2022, 01 UK, 2022, 02 US, 2022, 02 ];
Result
Region Year Month Hash160 abc xyz 123 MA&5]6+3=:>;>G%S<U*S2I:`=X* EU 2022 01 B40^K&[T@!;VB'XR]<5=//_F853 UK 2022 02 O5T;+1?[B&"F&1//MA[MN!T"FWZ US 2022 02 C6@#]4#_G-(]J7EQY#KRW`@KF+W