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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T01:47:43+00:00 2026-06-07T01:47:43+00:00

Whenever I use the max function I somehow lose all the connection to my

  • 0

Whenever I use the max function I somehow lose all the connection to my other values, so that the row that is printed later doesn’t correlate with the column that I ran max on anymore.

So my table is:

user col1 col2 col3
1    1    2    3
1    3    4    5
2    2    3    1
3    1    1    3
3    2    4    6
4    5    1    5

So if I run

select user, col1, col2, max(col3) as col3
from table
group by user
order by user;

I would get

user col1 col2 col3
1    1    2    5
2    2    3    1
3    1    1    6
4    5    1    5

So the max value of col3 is correct, but it doesn’t get the correct row of that value.

What I want is to get the max value of a column and return that row for each user. If there are multiple max values that it should return all users, even if it has same user id.

  • 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-07T01:47:44+00:00Added an answer on June 7, 2026 at 1:47 am

    Other databases (e.g. MS SQL Server) doesn’t let you mix aggergated values with non-aggregated values, just because you would get the wrong result.

    So, if you want non-aggregated values from the record where the maximum value was, join against the table again:

    select x.user, y.col1, y.col2, x.col3
    from (
      select user, max(col3) as col3
      from table
      group by user
    ) x
    inner join table y on y.user = x.user and y.col3 = x.col3
    order by x.user
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Whenever we use an aggregate function in SQL ( MIN , MAX , AVG
Whenever I use the trim() function on a string, it works fine with Chrome
Whenever I use WCF, I always try to make immutable classes that end up
Whenever I use the splice method in Javascript like so: Array.prototype.mymethod = function() {
I am plannning to use whenever gem which among other things will also run
Is there some global constructs that I can use whenever I need to access
Whenever I use session variables in webparts in sharepoint the page doesn't load and
Whenever I use permutations, I have to create a list of the permutations because
Whenever I use the Eclipse source code formatter / beautifier (via the menu item
Whenever I use the following code, the webserver (running IIS 7) refuses to send

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.