A little flaky perhaps, but if you're gonna love sql :-)<p>select distinct
cnt,
count(cnt) over (partition by cnt)
from (<p>select 'a' usr,1 cnt from dual union
select 'b' usr,1 cnt from dual union
select 'c' usr,2 cnt from dual union
select 'd' usr,3 cnt from dual union
select 'e' usr,3 cnt from dual )
Something tells me that query would probably run faster if written as a join, especially in MySQL.<p>Also, what's the point of a section of the same content in the article being repeated in a larger font to the left?