所以我基本上想显示这个(整行在一列):
我喜欢[类型列]蛋糕与[冰柱]和一个[水果列]。
结果应该是:
Cake_Column ---------------- I like chocolate cake with whipped_cream and a cherry. I like strawberry cake with vanilla_cream and a lemon_slice. etc. etc.
我需要某种类型的TO_CHAR语句([column]“some text”[column])“new_column_name”;
我应该知道什么?
您有两个选项用于在Oracle中连接字符串:
原文链接:/oracle/208250.htmlCONCAT示例:
CONCAT( CONCAT( CONCAT( CONCAT( CONCAT('I like ',t.type_desc_column),' cake with '),t.icing_desc_column),' and a '),t.fruit_desc_column)
使用||例:
'I like ' || t.type_desc_column || ' cake with ' || t.icing_desc_column || ' and a ' || t.fruit_desc_column