Apache Tajo - concat(string1, ..., stringN)



Let us now check the concat(string1, ..., stringN) function with the following query.

Query

default> select concat('tutorials','point') as string_concat;

Result

The above query will generate the following result.

string_concat 
------------------------------- 
tutorialspoint 

The above query returns the concatenation of two strings.

apache_tajo_string_functions.htm
Advertisements