Apache Tajo - bit_length(string text)



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

Query

default> select bit_length('tutorialspoint') as bitslength;

Result

The above query will generate the following result.

bitslength 
------------------------------- 
112

The number of bits in “tutorialspoint” is 112.

apache_tajo_string_functions.htm
Advertisements