×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Select but not quite distinct =)

Select but not quite distinct =)

Select but not quite distinct =)

(OP)
Hi!

I have a problem figuring out how to formulate my select-query. I will try to illustrate my problem :)

Table:

col1 | col2
-----------
 A   |  10
 B   |  13
 B   |  14
 C   |  11

I want to select every distinct occurence in col1 choosing the record with the highest value in col2, ie. i want the result set to be:

col1 | col2
-----------
 A   |  10
 B   |  14
 C   |  11

Any clues as how to do this? Any help wold be appreciated!

Regards,

Jonas

RE: Select but not quite distinct =)

(OP)
I realise I knew the answer to this one, but if I modify it slighly it gives me a headache again, like thus:

Table:

col1 | col2 | col3
--------------------
 A   |  10  |  Z
 B   |  13  |  X
 B   |  14  |  X
 C   |  11  |  Y

Now, if I use

SELECT DISTINCT col1, MAX(col2), col3 FROM Table GROUP BY col1, col3

I still get all 4 posts even though I only wanted 3, ie

col1 | col2 | col3
--------------------
 A   |  10  |  Z
 B   |  14  |  X
 C   |  11  |  Y

Why do I have to GROUP BY col3 as well?

How do I include col3 without corrupting my previously successful query?

Rgr,

Jonas

RE: Select but not quite distinct =)

SQL requires that any column not aggregated in the result (i.e. sum, average, max) must appear in the GROUP BY expression.  Therefore, if you include col3 in your SELECT statement, it must also appear in the GROUP BY statement.

In your example, it appears that col3 is a constant function or mapping of col1, such that A=Z, B=X, C=Y.  If that is the case, then you can exclude col3 from the query and then calculate it after you get the query's results.

Hope this helps!

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources