Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Numeric Function
Connor McDonald wrote:
>
> NeedaHoliday wrote:
> >
> > Is there a function or method to search a string character and find
> > only numeric values?
> >
> > Thanks
>
> where
> replace(
> translate(col,'0123456789','9999999999')
> '9',null) is null
>
> or thereabouts
>
or more efficiently....
where translate(col, ' 0123456789', ' ') is null
Richard Received on Wed Nov 07 2001 - 17:35:23 CST
![]() |
![]() |