Apache Tajo - md5(string text)



Let us now check the md5(string) function with the following query.

Query

default> select md5('tutorialspoint') as hash; 

Result

The above query will generate the following result.

hash 
------------------------------- 
6c60b3cfe5124f982eb629e00a98f01f 

The query returns md5 hash value for the given input string.

apache_tajo_string_functions.htm
Advertisements