I was thinking you could use a regexp_like condition and use the regular expression to find any non-numerics. I hope this might help?!
SELECT * FROM table_with_column_to_search WHERE REGEXP_LIKE(varchar_col_with_non_numerics, '[^0-9]+');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…