Show Your Support
SELECT * FROM post LEFT JOIN thread USING (threadid) WHERE thread.forumid=1;
SELECT * FROM xxx LEFT JOIN post USING (postid) LEFT JOIN thread USING (post.threadid) WHERE thread.forumid=2
SELECT * FROM xxx LEFT JOIN post USING (postid) LEFT JOIN thread USING (threadid) WHERE thread.forumid=2