select t1.name Value, count(t1.name) Count from(
select pd_team from Table
union all
select rating from Table
union all
select att_attorney from Table
union all
select law_firm from Table
union all
select patent_developer from Table) t1 group by t1.name;