oracle怎么在字符字段中查出只包含数字的数据

2025-03-29 01:03:29
推荐回答(5个)
回答1:

如果你的条件不允许你写PLSQL函数的话,就用正则表达式,如下:


SELECT *
  FROM TABLE
 WHERE REGEXP_SUBSTR(CHECK, '^[0-9\.\-]\d*\.{0,1}\d+$') IS NOT NULL;

回答2:

你应该希望提取的字段只要含有数字就提出,剔除空和不含数字的字符串。

select * from table where regexp_substr(check,'[0-9]+') is not null

回答3:

declare   v_length  number default 0;  

t_sum    number default 0; 

t_num    number default 0;  

t_is_num number default 0;  

v_str    TMP_XYX26.T2%type;   

cursor t_cur is select t2 from TMP_XYX26 where regexp_substr(t2, '[0-9]+') is not null; 

begin  open t_cur;  

loop    fetch t_cur      into v_str;    

exit when t_cur%notfound;    t_sum := 0;    

select length(v_str) into v_length from dual;    

for i in 1 .. v_length loop    select ascii(substr(v_str, i, 1)) into t_is_num from dual; 

if t_is_num between 48 and 57 then   select substr(v_str, i, 1) into t_num from dual;       

t_sum := t_sum + t_num;            

else null;      

end if;         

end loop;      

dbms_output.put_line;

end loop; 

close t_cur;

end;

回答4:

select * from tableName where check<> regexp_replace(check,'[^0-9]');

目前我就想到这个方法

回答5:

正则表达式