Voici comment trouver tous les A dans une chaîne :
select length(regexp_replace('AAADDD', '[^A]', '', 'g'));
Voici comment trouver tous les A dans un tableau :
select sum(length(regexp_replace(field, '[^A]', '', 'g'))) from table;
Voici comment trouver tous les A dans une chaîne :
select length(regexp_replace('AAADDD', '[^A]', '', 'g'));
Voici comment trouver tous les A dans un tableau :
select sum(length(regexp_replace(field, '[^A]', '', 'g'))) from table;