A little flaky perhaps, but if you're gonna love sql :-)
select distinct
cnt,
count(cnt) over (partition by cnt)
from (
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 )
3 comments
[ 5.1 ms ] story [ 17.9 ms ] threadAlso, what's the point of a section of the same content in the article being repeated in a larger font to the left?
Re:Theme with massive paragraph - it was based on a magazine wordpress theme and we're yet to edit it down.
select distinct cnt, count(cnt) over (partition by cnt) from (
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 )