Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing sql query to get post and only last comment of this post(if exists). But I can't find a way to limit only 1 row for right column in left join.

Here is sample of this query.

SELECT post.id, post.title,comment.id,comment.message
from post
left outer join comment
on post.id=comment.post_id

If post has 3 comments I get 3 rows with this post, but I want only 1 row with last comment(ordered by date).

Can somebody help me with this query?

share|improve this question

5 Answers

up vote 27 down vote accepted
SELECT  post.id, post.title, comment.id, comment.message
FROM    post
OUTER APPLY
        (
        SELECT  TOP 1 *
        FROM    comment с
        WHERE   comment.post_id = post.id
        ORDER BY
                date DESC
        ) comment

or

SELECT  *
FROM    (
        SELECT  post.id, post.title, comment.id, comment.message,
                ROW_NUMBER() OVER (PARTITION BY post.id ORDER BY comment.date DESC) AS rn
        FROM    post
        LEFT JOIN
                comment
        ON      comment.post_id = post.id
        ) q
WHERE   rn = 1

The former is more efficient for few posts with many comments in each; the latter is more efficient for many posts with few comments in each.

share|improve this answer
Thanks for answer. I use next code. SELECT post.id, post.title,c.id as comment_id,c.message from post left outer join (select comment.id,comment.post_id,comment.message, ROW_NUMBER() OVER (PARTITION BY comment.post_id ORDER BY comment.date DESC) AS rn from comment) c on post.id=c.post_id where c.rn=1 or c.rn is null – barbarian Feb 17 '10 at 15:24
The APPLY operator did the trick for me. I was making a 1-to-many join, but needed to reduce the right side matches down to only the most recently created. Thanks! – Aaron Bennett Jul 18 '12 at 19:25
It is interesting to put this two together to show the estimated query plan, the apply option was 99% of the query cost :o – Felipe Sabino Feb 19 at 16:42
@FelipeSabino: If you see a "buffalo" sign on an elephant's cage, do not trust your eyes. – Quassnoi Feb 19 at 19:17

Subquery:

SELECT post.id, post.title,comment.id,comment.message 
from post 
left outer join comment 
on post.id=comment.post_id 
where  comment.Id = (select max(c2.Id) from comment c2 where  post.id = c2.post_id  )
share|improve this answer

You'll want to join to a sub-query that returns the last comment for the post. For example:

select post.id, post.title. lastpostid, lastcommentmessage
from post
inner join
(
    select post.id as lastpostid, max(comment.id) as lastcommentmessage
    from post
    inner join comment on commment.post_id = post.id
    group by post.id
) lastcomment
    on lastpostid = post.id
share|improve this answer

Couple of options....

One way is to do the JOIN on:

SELECT TOP 1 comment.message FROM comment ORDER BY comment.id DESC

(note I'm assuming that comment.id is an Identity field)

share|improve this answer
what if Identity field has a negative increment? – No Refunds No Returns Feb 17 '10 at 14:55
have you ever come across such a thing? – Phil Factor Mar 28 '11 at 9:04

what version of SQL Server? If you have the Row_Number() function available you can sort your comments by whatever "first" means to you and then just add a "where RN=1" clause. Don't have a handy example or the right syntax off the top of my head but do have tons of queries that do exactly this. Other posts are all in the 1,000's of ways you could do this.

I'd say profile it and see which one performs best for you.

share|improve this answer
I use SQL SERVER 2005 – barbarian Feb 17 '10 at 15:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.