Apache Presto - 字符串运算符

字符串运算符"||" 执行串联

查询

presto:default> select 'tutorials' || 'point' as string_concat;
 string_concat 
---------------- 
 tutorialspoint

这里,输出是作为两个给定字符串的串联执行的。

apache_presto_basic_sql_operations.html