当前位置:   article > 正文

sql中trim以及正则表达式regexp_replace函数用法and hive常用函数_sql replace 正则

sql replace 正则

Hive常用函数集合

https://blog.csdn.net/chivalrousli/article/details/87645508

trim()函数

去掉字符串字头和字尾的空白

regexp_replace()函数,使用正则表达式

regexp_replace(t.company_name,'[`~!#$^*+=,?!@¥%…‘;”“’。,?]',"")
regexp_replace('需要进行替换的字段' , '需要替换的关键字(可以使用正则)', '替换的内容')
  • 1
  • 2

将t.company_name字符串中的内容进行正则匹配,将匹配到的结果转化为" " 。

translate()函数的用法

translate(x,from_string,to_string)函数在x中查找from_string中的字符,并将其转换成to_string中对应的字符

substr()函数的用法

substr(string ,1,3) 函数解读:取string 中从第1个字符开始(从左往右),长度为3的字符串。
substr(string ,-1,3) 函数解读:取string 中从第1个字符开始(从右往左),长度为3的字符串。

case when (条件) then … when (条件) then … else …

select 
company_id, 
trim(case when substr(t.company_name,0,1)='“' then translate(translate(regexp_replace(t.company_name,'[`~!#$^*+=?!@¥%…‘;”“’。,?]',""),'(','('),')',')') 
     when substr(t.company_name,length(t.company_name),1)='、' then translate(translate(regexp_replace(t.company_name,'[`~!#$^*+=?!@¥%…‘;”“’。,、?]',""),'(','('),')',')') 
     when substr(t.company_name,length(t.company_name),1)=',' then translate(translate(regexp_replace(t.company_name,'[`~!#$^*+=,?!@¥%…‘;”“’。,?]',""),'(','('),')',')') 
     else translate(translate(regexp_replace(t.company_name,'[`~!#$^*+=?!@¥%…‘;’。,?]',""),'(','('),')',')')  end ) as company_name, 
partner_count, 
employee_count, 
branch_count, 
change_count, 
investinfo_count, 
annual_report_count,
'zjs' as data_source
from qqqccccc_t_eci_count t'''
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/230922
推荐阅读
相关标签
  

闽ICP备14008679号