bsatterfield1 4
bsatterfield1 13
bwalker 73
cbigbee 8
cbigbee 13
cmorgan1 6
ctinsley 1
mblack 2
mblack 19
rwatson1 3
rwatson1 5
rwilson1 2
screef1 19
screef1 26
ssimpson 71
SELECT user2ent, COUNT(*)
FROM (
SELECT user2ent, COUNT(*) AS _count
FROM sop10100
GROUP BY user2ent
UNION
SELECT user2ent, COUNT(*)
FROM sop30200
GROUP BY user2ent
) AS TempCount
GROUP BY user2ent
ORDER BY user2ent ASC
group by user2ent
union all
select user2ent, count(*) as hits from sop30200
group by user2ent
order by user2ent asc