oracle 正则表达式 非字母 非数字

    Update ods_qad_cust_ar s
       Set s.customer = regexp_replace(customer,
                                        '[^[:alpha:]|^[:digit:]]',
                                        '');
                                       
         Update ods_qad_cust_aP s
       Set s.SUPPLIER = regexp_replace(SUPPLIER,
                                        '[^[:alpha:]|^[:digit:]]',
                                        '');
                                       

 

 

 

 

 

 

 

posted @ 2020-07-03 21:33  shu'sblog  阅读(2883)  评论(0编辑  收藏  举报