oracle数字字符串是否有非法数字

select trim(translate(RTRIM(LTRIM(ITEM_NUMBER)), '#0123456789', '#'))
  from TestChar
 Where trim(translate(RTRIM(LTRIM(ITEM_NUMBER)), '#0123456789', '#')) is not null;

原文地址:https://www.cnblogs.com/lord-fly/p/4250793.html