Apache Tajo - reverse(string)



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

Query

default> select reverse('tutorialspoint') as string_reverse; 

Result

The above query will generate the following result.

string_reverse 
------------------------------- 
tniopslairotut

The query returns reverse of the given string.

apache_tajo_string_functions.htm
Advertisements