Apache Tajo - upper(string)



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

Query

default> select upper('apache tajo') as upper; 

Result

The above query will generate the following result.

upper 
------------------------------- 
APACHE TAJO 

The query returns the upper case format of the given string “apache tajo”.

apache_tajo_string_functions.htm
Advertisements