@alfasin उत्तर अच्छा है, लेकिन यदि आप 11g का उपयोग कर रहे हैं तो यह आसान हो सकता है:
select name,
REGEXP_count(name,'\d') as num_count,
REGEXP_count(name,'[a-zA-Z]') as char_count,
from test6;
@alfasin उत्तर अच्छा है, लेकिन यदि आप 11g का उपयोग कर रहे हैं तो यह आसान हो सकता है:
select name,
REGEXP_count(name,'\d') as num_count,
REGEXP_count(name,'[a-zA-Z]') as char_count,
from test6;