trim(translate))和trim(regexp_replace)的使用
trim(translate)和trim(regexp_replace)的使用
trim(translate))的使用
select
trim(
translate
(
t.DSR_NAME, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+_-=.`*~/!@#$%^&*()',' '
)
) as bb
from dam_dsr_relationb t
如果 DSR_NAME 这个字段里存有 2051李
通过 trim(translate))后,得到的值为 李
trim(regexp_replace)的使用
trim(regexp_replace (a.DSR_NAME,'[[:digit:]]|[A-Z]|[a-z]|[[:punct:]]','')) as name2