Apache Tajo - length(string)


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

Query

default> select length('tutorialspoint') as length;

Result

The above query will generate the following result.

length 
------------------------------- 
14

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

apache_tajo_string_functions.htm
Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements