Apache Tajo - ascii(char)



Let us now check the ascii(char) function with the following query.

Query

default> select ascii('a') as ASCII;

Result

The above query will generate the following result.

ascii 
------------------------------- 
97 

The ASCII value for char ‘a’ is 97.

apache_tajo_string_functions.htm
Advertisements