sql—在特定列中,我希望处理管道函数,同时使用concat函数我怎样才能做到这一点?在下面查询

ohfgkhjo  于 2021-06-25  发布在  Hive
关注(0)|答案(1)|浏览(247)
select regexp_replace(id,'["\t\n|]', '') as CONCAT('SF_',id) as id
      ,lastmodifiedbyid
      ,lastmodifieddate
from Enterprise_raw
bnl4lu3b

bnl4lu3b1#

可以将一个函数 Package 为另一个函数:

select concat('SF_',regexp_replace(id,'["\\t\\n|]', '')) as id,
       ,lastmodifiedbyid
       ,lastmodifieddate
  from Enterprise_raw

相关问题