日期:2014-05-16  浏览次数:20383 次

oracle 判断 数据是否为数字

?

SELECT * FROM t a
WHERE length(translate(a.rn,'0123456789'||a.rn,'0123456789'))=length(a.rn)
?

?