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

  • Home
  • SEARCH
  • 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 7173137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:45:39+00:00 2026-05-28T15:45:39+00:00

I recently asked this question here and got some great answers! Custom SQL GROUP

  • 0

I recently asked this question here and got some great answers!
Custom SQL GROUP BY Clause

However, it turns out I provided the wrong requirements for my problem. Sorry guys!

Sooooo. What I need to select is:

Distinct values in the Column ‘PartNumbers’, however:

–>For EACH unique PartNumber, I want to select the specific ROW from that table that has the MAX VALUE of the ‘PO’ Column for that particular part number.

–>Also, to make life more difficult, I want to exclude the ANY of the PartNumbers who have ANY VALUE in the Column ‘Receipt’

You guys have been a great help! Much appreciated everyone!

EDIT:

Table Name: Log

Columns: ID, Supplier, PartNumber, PO, Quantity, DateReceived

Note: only the ID column is unique.

  • 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-28T15:45:40+00:00Added an answer on May 28, 2026 at 3:45 pm

    Using CTE:

    with TableWithRowNumber as
        (select 
            *,
            row_number() over (partition by PartNumber order by PO desc) as RowNo
        from MyTable)   
    select * from TableWithRowNumber 
    where RowNo = 1
    and PartNumber not in 
        (select distinct PartNumber from MyTable where Receipt is not null)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently asked this question on here and got the answer. However I'm now
I recently asked this question and got back a great solution using jquery for
I recently asked this question in the pyglet-users group, but got response, so I'm
I recently asked this question: MS SQL share identity seed amongst tables (Many people
I recently asked a question here, and someone provided this answer: private void button1_Click(object
I recently asked this question: Compiler error referencing custom C# extension method Marc Gravell
Here's a very specific coding question: I've recently been asked to maintain some old-ish
I recently asked this question , but after some of the responses and some
I recently asked this question: Expose XML or Objects - thanks all for the
I recently asked this question and worked out that the reason a single email

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.