oracle中找出某个字段中有非数字型的记录

工作中遇到一个大表记录中有非法非数字字符,不想用正则语法去做,

用一条SQL语句查出来的方法如下:

select * from table where translate(col,'*0123456789','*')  is not null

原文地址:https://www.cnblogs.com/adu1218/p/4344690.html