Gets the posts with the most comments
Q&A for programmers
-- Posts with lots of comments -- Gets the posts with the most comments select top 100 posts.id as [Post Link], count(comments.id) as 'Number of Comments' from posts inner join comments on comments.postid = posts.id group by posts.id order by count(comments.id) desc
Error: looks like you typed in the wrong words - try again