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 8293109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:43:09+00:00 2026-06-08T13:43:09+00:00

I have a table called TableA. Input: ColumnA ColumnB ColumnC jim 1788 5F jim

  • 0

I have a table called TableA.

Input:

ColumnA      ColumnB    ColumnC
jim          1788           5F
jim          2000           9F
jim          500            9F
ben          190            4H
geri          40        manny
geri          40        kelly
geri          20        joker
geri          20        jam

Output:

ColumnA     ColumnB     ColumnC
jim            2000         9F
jim            2000         NULL
ben             190         4H
geri            40          manny
geri            40          kelly
geri            40          NULL

Can someone help me with the SQL query?

The logic is the following:

I want to group the rows by ColumnA, e.g. the “gerri” group will have 4 rows. For each group, the maximum element from ColumnB is calculated , for gerri group it’s 40.
Each element in the group is analysed for ColumnB: if the element.ColumnB = maximum, the row is put in the output (if it doesn’t exist already). Otherwise, if the element.ColumnB different than the maximum, the current row is put in the output with NULL on ColumnC and MAXIMUM on ColumnB (again, if it doesn’t exist in the output already).

It’s clearer from the example I gave.

Thank you for any suggestions in advance!

  • 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-06-08T13:43:11+00:00Added an answer on June 8, 2026 at 1:43 pm
    ; with maxes as (
      select ColumnA,
             ColumnB,
             ColumnC,
             max(ColumnB) over (partition by ColumnA) mx
        from tablea
    )
    select distinct
           ColumnA, 
           mx ColumnB, 
           case when mx = ColumnB 
                then ColumnC 
                else null 
            end ColumnC
    from maxes
    

    Example on Sql Fiddle.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table called TableA whch has a foreign key from TableB and
I have this table called logs that logs a who input or output data.
I have table called stats . In am inserting yes or no in the
i have table called as Support, which have a field named Name and contains
I have table called Buttons. Buttons table i have column button_number . Table contain
I have table called posts in my DB. Each post has field called social_network
We have a table called table1 ... (c1 int indentity,c2 datetime not null,c3 varchar(50)
I have a table called Table with columns: ID (int, primary key, clustered, unique
Assume I have a table called table and I have 3 columns, a, b,
I have a table called 'MyTable' that looks like: ID | Item | Type

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.