Apache Tajo - initcap(string text)



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

Query

default> select initcap('tutorialspoint') as firstcap; 

Result

The above query will generate the following result.

firstcap 
------------------------------- 
Tutorialspoint 

Here, the first char of the given string is capitalised using the initcap() method.

apache_tajo_string_functions.htm
Advertisements