It will only show no more than 5 comments, how to query it in database?

I mean how to query for questions and limited comments at the same time?

link|improve this question
5  
This isn't specific to SO is it? Isn't another run of the mill SQL question? – random Dec 16 '09 at 3:31
3  
This belongs on SO – waffles Dec 16 '09 at 4:52
1  
I started a 3 paragraph answer but gave up, its too involved, if you want to do this efficiently and minimize DB round trips this is far from trivial and involves at least one or 2 denormalizations I can think of. – waffles Dec 16 '09 at 4:57
It should me remigrated to SO – Xinus Dec 16 '09 at 5:46
2  
Needs to be reopened on SO but with minor editing so as to not confuse those users in thinking it belongs on Meta. – random Dec 16 '09 at 5:49
Jeff handpicks each comment. – alex Dec 16 '09 at 9:37
feedback

migrated from stackoverflow.com Dec 16 '09 at 3:09

This question came from our site for professional and enthusiast programmers.

closed as off topic by Ladybug Killer, random, Ether, Troggy, George Stocker Dec 16 '09 at 23:55

Questions on Meta Stack Overflow are expected to generally relate to the Stack Exchange family of websites and/or community in some way, within the scope defined in the faq.

7 Answers

-- like this for SQL Server:
SELECT TOP 5 * FROM Comments
link|improve this answer
no,it queries questions and the comments the same time,your version only comment. – Anonymous Dec 16 '09 at 3:07
Dude. We're talking about programming here. Sometimes you need to put the little bits together on your own, instead of expecting people to give you solutions fully formed. – Anon. Dec 16 '09 at 3:09
Dude. But how is that helpful? He's not asking how to display it or make it display like it does. The site was made to help, not to give run of the mill answers you can find by using google. – Burbidge87 Dec 16 '09 at 4:34
feedback

By passing the last received comment id (likely the id of the post owning the comment, too) to the database, and asking for the next five with higher id's, sequentially ordered.

link|improve this answer
feedback
SELECT blah blah blah LIMIT 5
link|improve this answer
feedback
-- like this for MySQL
SELECT * FROM Comments ORDER BY CreateDate LIMIT 5
link|improve this answer
feedback

I would guess like this

 int qid = 23;
 var q = (from c in context.comments
         where c.questionid == qid
         select new {  c  }).Take(10)

I would recon they would have a similar query like this.

link|improve this answer
So it will only query limited comments for one specific question.But SO has them for all answers. – Anonymous Dec 16 '09 at 3:18
feedback

How does SO query comments ?

This is something that only Jeff and his team can answer. I do not know if they are doing one round trip per comment batch or grabbing them all in one go.

link|improve this answer
feedback

may be like

SELECT * FROM (
SELECT * FROM post_comments WHERE comment_votes is NOT NULL
UNION
SELECT * FROM post_comments WHERE comment_votes is NULL)
ORDER BY entry_time
LIMIT 5

EDIT:

This is true for large number of comments. But for smaller number of comments it just collects first five comments irrespective of comment_votes

SELECT * FROM post_comments ORDER BY entry_time LIMIT 5
link|improve this answer
feedback

You must log in to answer this question.