Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3670766
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:24:18+00:00 2026-05-19T02:24:18+00:00

I have two tables that I am outer joining together: Post left outer join

  • 0

I have two tables that I am outer joining together: “Post” left outer join with “Comments”.

There is a one-to-many relationship between Post and Comments.

I would like to be able to pull the first, say 10, Post records and all of the associated Comments (if any) for each Post.

The way I would usually do this would be to have a Common Table Expression and use ROW_NUMBER() OVER. However, ROW_NUMBER() counts each row, which in this case would not work since I only want to count the Post records.

I was looking at ROW_NUMBER() OVER (PARTITION), but it does not work how I would expect it.

So if want the first 5 Posts, I would get something like:

PostNumber     PostId     CommentId
1              1          1
1              1          2
2              2          -
3              8          3
3              8          4
4              9          5
5              15         -
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T02:24:19+00:00Added an answer on May 19, 2026 at 2:24 am

    Have a look at using DENSE_RANK function

    Returns the rank of rows within the
    partition of a result set, without any
    gaps in the ranking. The rank of a row
    is one plus the number of distinct
    ranks that come before the row in
    question.

    Something like

    ;WITH Vals AS (
            SELECT  p.*,
                    DENSE_RANK() OVER(ORDER BY p.PostID) DenseRankID
            FROM    Post p LEFT JOIN
                    Comments c ON p.PostID = c.PostID
    )
    SELECT  *
    FROM    Vals 
    WHERE   DenseRankID <= 10
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables that are joined together. A has many B Normally you
I have a join on two tables defined as a left outer join so
Ok, I have two tables that I am joining and doing a select on
I have two tables, one that contains volunteers, and one that contains venues. Volunteers
I have a view that is joining two tables and ordering by the first
I have two tables with identical fields that share many rows. I'd like to
I have two tables. One is a table of the reports that have been
I have two tables called 'events' and 'topics' each table can have many comments.
I have two tables say, t1 and t2 that have t1.t1_id and t2.t2_id as
Say that I have two tables like those: Employers (id, name, .... , deptId).

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.