select
practice, stuff1 as stuff, count(*)
from table
group by practice, stuff1
union
select
practice, stuff2 as stuff, count(*)
from table
group by practice, stuff2
union
select
practice, stuff3 as stuff, count(*)
from table
group by practice, stuff3