Odpověď @alfasin je dobrá, ale pokud používáte 11g, může to být jednodušší:
select name,
REGEXP_count(name,'\d') as num_count,
REGEXP_count(name,'[a-zA-Z]') as char_count,
from test6;
Odpověď @alfasin je dobrá, ale pokud používáte 11g, může to být jednodušší:
select name,
REGEXP_count(name,'\d') as num_count,
REGEXP_count(name,'[a-zA-Z]') as char_count,
from test6;