Apache Tajo - char_length(string text)



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

Query

default> select char_length('tutorialspoint') as charlength;

Result

The above query will generate the following result.

charlength 
------------------------------- 
14

Here, the given string “tutorialspoint” length is 14.

apache_tajo_string_functions.htm
Advertisements