Apache Tajo - lower(string)


Advertisements


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

Query

default> select lower('Apache Tajo') as lower;

Result

The above query will generate the following result.

lower 
------------------------------- 
apache tajo 

The query returns the lower case format of the given string “Apache Tajo”.


apache_tajo_string_functions.htm

Advertisements