I have tried all kinds of different ways to query this but just can't seem to get exactly what I want... What I use below works GREAT with 1 exception... I need to have the query only return 1 row PER UNIQUE ID. At the bottom is an example of what I'm looking to get in the end.
My current query:
SELECT
T.id,
T.request_type,
T.created_timestamp,
T.status,
T.subject,
P.id,
P.created_timestamp,
P.created_by_user,
P.post
FROM request_threads T
INNER JOIN request_posts P
ON T.id = P.id
WHERE T.created_by_user = 2
AND P.created_by_user != (
SELECT MAX(P2.created_timestamp)
FROM request_posts P2 WHERE id = T.id
)
ORDER BY P.created_timestamp DESC
My current query results:
id request_type created_timestamp status subject id created_timestamp created_by_user post
4 7 2011-11-08 10:50:57.440 7 Request 4 blah black 4 2011-11-14 17:44:16.603 3 Changed status to Closed.
4 7 2011-11-08 10:50:57.440 7 Request 4 blah black 4 2011-11-14 17:44:07.060 3 Test for caps and no punct!
4 7 2011-11-08 10:50:57.440 7 Request 4 blah black 4 2011-11-14 17:43:36.797 3 New formated post with a capital first letter and a period at the end.
4 7 2011-11-08 10:50:57.440 7 Request 4 blah black 4 2011-11-14 13:42:27.707 3 Changed status to Pending. Just testing... test again Blah
2 7 2011-11-07 14:53:01.410 7 Request 2 blah green 2 2011-11-08 13:05:23.183 3 Changed status to Closed.
4 7 2011-11-08 10:50:57.440 7 Request 4 blah black 4 2011-11-08 10:50:57.527 2 This is the 1st yellow post for four
2 7 2011-11-07 14:53:01.410 7 Request 2 blah green 2 2011-11-07 14:53:01.420 2 This is the 1st green post for two
The results I hope to get:
(note I want the oldest created_timestamp from the request_posts table)
id request_type created_timestamp status subject id created_timestamp created_by_user post
4 7 2011-11-08 10:50:57.440 7 Request 4 blah black 4 2011-11-14 17:44:16.603 3 Changed status to Closed.
2 7 2011-11-07 14:53:01.410 7 Request 2 blah green 2 2011-11-08 13:05:23.183 3 Changed status to Closed.