Thanks, I've been working on it some and I've been able to get some progress. I've been able to figure out how many posts there were by a certain user in each thread...
SELECT count(post.postid) as postsinthread, post.threadid as threadid from post WHERE post.userid='1' group by threadid
And I've been able to add up the threads in a forum...
SELECT COUNT(thread.threadid) AS threadsinforum, thread.forumid AS forumid FROM thread GROUP BY forumid
But what I can't figure out is how you would take the results of the former query and add the number of posts in each thread up together where the thread shares the same forumid. Anybody think they could help me? Thanks!