赞
踩
https://blog.csdn.net/chivalrousli/article/details/87645508
去掉字符串字头和字尾的空白
regexp_replace(t.company_name,'[`~!#$^*+=,?!@¥%…‘;”“’。,?]',"")
regexp_replace('需要进行替换的字段' , '需要替换的关键字(可以使用正则)', '替换的内容')
将t.company_name字符串中的内容进行正则匹配,将匹配到的结果转化为" " 。
translate(x,from_string,to_string)函数在x中查找from_string中的字符,并将其转换成to_string中对应的字符
substr(string ,1,3) 函数解读:取string 中从第1个字符开始(从左往右),长度为3的字符串。
substr(string ,-1,3) 函数解读:取string 中从第1个字符开始(从右往左),长度为3的字符串。
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'''
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。