Apache-presto-string-operator

提供:Dev Guides
移動先:案内検索

Apache Presto-文字列演算子

文字列演算子「||」は連結を実行します。

問い合わせ

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

結果

 string_concat
----------------
 finddevguides

ここでは、2つの指定された文字列の連結として出力が実行されます。