plsql check for string in numeric

Solutions on MaxInterview for plsql check for string in numeric by the best coders in the world

showing results for - "plsql check for string in numeric"
Valentina
16 Jan 2018
1SELECT case when regexp_like(col1, '^\d+(\.\d+){0, 10}?$') 
2            then 'numeric'
3            else 'alfa'
4      end
5FROM  tab1;
6
similar questions
queries leading to this page
plsql check for string in numeric