To retrieve only numeric values from both numeric& character value
In 10 g
Select regexp_replace(regexp_replace('5RTYDDB','([[:punct:]])'),'([[:alpha:]])')
from dual t
In 9i
select replace('BBd3',TRANSLATE('BBd3', ' +-.0123456789', ' '),'') from dual
------------
No comments:
Post a Comment