Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Java Databases > Re: GROUP BY & ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 4 of 6 Topic 3668 of 3876
Post > Topic >>

Re: GROUP BY & column not in select list

by Lew <lew@[EMAIL PROTECTED] > Mar 3, 2008 at 10:31 AM

Lew wrote:
> Lew wrote:
>>  SELECT name, MAX(userid) AS userid, MAX(age)
>>   FROM users GROUP BY name
>>    ORDER BY name;
> 
> Crap.  This won't work.

MAX() works independently on each column, so this "solution" will not 
guarantee correct correlation of userid to age.

"Correlation", did I say?  This calls for a correlated subquery:

  SELECT name, userid, age
   FROM users u WHERE age IN
    (SELECT MAX(age) FROM users x WHERE x.name = u.name)
  ;

-- 
Lew
 




 6 Posts in Topic:
GROUP BY & column not in select list
anssiman@[EMAIL PROTECTED  2008-03-03 06:25:21 
Re: GROUP BY & column not in select list
Lew <lew@[EMAIL PROTEC  2008-03-03 09:59:32 
Re: GROUP BY & column not in select list
Lew <lew@[EMAIL PROTEC  2008-03-03 10:01:58 
Re: GROUP BY & column not in select list
Lew <lew@[EMAIL PROTEC  2008-03-03 10:31:15 
Re: GROUP BY & column not in select list
=?ISO-8859-1?Q?Arne_Vajh=  2008-03-03 22:29:28 
Re: GROUP BY & column not in select list
anssiman@[EMAIL PROTECTED  2008-03-03 23:52:28 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Wed Dec 3 22:49:17 CST 2008.