在一个特定的专栏中,我想同时处理管道函数以及使用 concat 函数。我怎样才能做到这一点?下方查询
Posted
技术标签:
【中文标题】在一个特定的专栏中,我想同时处理管道函数以及使用 concat 函数。我怎样才能做到这一点?下方查询【英文标题】:In a particular column, I want to handle pipe function as well as make use of a concat function at the same time. How can I achieve this? Query below 【发布时间】:2019-11-20 16:08:12 【问题描述】:select regexp_replace(id,'["\t\n|]', '') as CONCAT('SF_',id) as id
,lastmodifiedbyid
,lastmodifieddate
from Enterprise_raw
【问题讨论】:
【参考方案1】:您可以将一个函数包装到另一个函数中:
select concat('SF_',regexp_replace(id,'["\\t\\n|]', '')) as id,
,lastmodifiedbyid
,lastmodifieddate
from Enterprise_raw
【讨论】:
以上是关于在一个特定的专栏中,我想同时处理管道函数以及使用 concat 函数。我怎样才能做到这一点?下方查询的主要内容,如果未能解决你的问题,请参考以下文章