Link to home
Start Free TrialLog in
Avatar of thefritterfatboy
thefritterfatboy

asked on

Sorting INNER JOIN

My problem lies here:

I have a message board running on MS-SQL. I want to sort the topics in order of last reply. I have a TOPICS table, USERNAMES table and a POSTS table. To display an asp page, I need to get the thread title, thread id, username of last person to reply and order these results by time of last reply. Ideally, this should be one sql statement but I can't get it to work.

I'm assuming this is going to take a subquery to get the latest post where POSTS.thread_id is the same as the thread id.

Can anyone help?
Avatar of ram2098
ram2098

I am not sure of your table structures..but your query should be something like this.

I assume TOPICS and POSTS table are related bt THREAD_ID
and POSTS AND USERNAMES are related by USERID

then your query is as below..... (You can include a where clause to this if you want the details for a specific topic or user etc)

SELECT A.THREADID,
            A.THREADTITLE,
            C.USERNAME
FROM TOPICS A
INNER JOIN POSTS B
A.THREAD_ID = B.THREAD_ID
INNER JOIN USERNAMES C
B.USERID = C.USERID
ORDER BY B.POSTTIME DESC

If you can give your table structures in detail ...I can help you with the exact query.
You need to use JOIN's something like this (I guessed at some of the column names). The WHERE clause uses a variable if you want to restrict it to one thread. The t, u, and p are aliases for the table names so you don't have to type the whole names over and over.

SELECT p.thread_id, p.thread_title, u.LastName
FROM Topics t
 INNER JOIN Posts p ON t.topic_id = p.topic_id
 INNER JOIN UserNames u ON p.user_id = u.user_id
WHERE p.thread_id = @thread_id
ORDER BY p.PostDate DESC

If you want the exact SQL for your specific case, we'll need you to post the column names for each table, and which columns are primary and foreign keys.
Sorry, ram, I must have started right before you posted...
Avatar of thefritterfatboy

ASKER

That's going to give me a massive recordset of threads mixed in with posts. I only need one record per thread, that's where my problem lies.

The statement SELECT TOP 1 PostDate, postUserID FROM POSTS ORDER BY PostDate DESC; needs to grab the last post and use that if you get what I mean.
Whoops, I think ram and I both missed that you only want the user name of the last person to post, so I think you'll need a couple of nested sub-selects, similar to this.

SELECT DISTINCT p.thread_id, p.thread_title, u.LastName
FROM Topics t
 INNER JOIN Posts p ON t.topic_id = p.topic_id
 INNER JOIN (
   --get user name of last person to post to a thread
   SELECT thread_id, username
   FROM Posts p INNER JOIN (
      --last post per thread
      SELECT topic_id, Max(thread_id) as Max_thread_id
      FROM Posts
      GROUP BY topic_id
      ) sub ON p.topic_id = sub.topic_id AND p.thread_id = sub.Max_thread_id
   ) u ON p.user_id = u.user_id
WHERE p.thread_id = @thread_id --optional line
ASKER CERTIFIED SOLUTION
Avatar of ram2098
ram2098

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Using ram2098's sugeestion the solution appears to lie in this SQL:

SELECT T.thread_id,
       T.thread_title,
       U.username,
       U.user_id,
       P.post_time
FROM TVERSION4 T
INNER JOIN PVERSION4 P ON
P.from_thread_id = T.thread_id
INNER JOIN USERS U
ON P.post_user_id = U.user_id
WHERE P.post_time = (SELECT MAX(S.post_time) FROM PVERSION4 S
WHERE S.from_thread_id = T.thread_id)
ORDER BY P.post_time DESC

jdlambert - I'm accepting ram's solution as it makes less queries, space and looks neater! I appreciate your time and effort, however.