select sum(value) as 'Value',max(value)
from table_name where sum(value)=max(sum(value)) group by id_name;
The error is: Invalid use of group function (ErrorNr. 1111)
Any idea?
Thanks.
The error is: Invalid use of group function (ErrorNr. 1111) Any idea? Thanks.
| ||||
|
feedback
|
|
Can you maybe try
From MySQL Forums :: General :: selecting MAX(SUM()) Or you could try something like
Or even with an Inner join
| ||||
|
feedback
|
|
The Let's step back, though: What information are you actually trying to get? Because the sum of the values in the table is unique; there is no minimum or maximum (or, depending on your viewpoint, there is -- the value is its own minimum and maximum). You'd need to apply some further criteria in there for the results to be meaningful, and in doing so you'd probably need to be doing a join or a subselect with some criteria. | |||
|
feedback
|
max(sum(value))is casuing the problem? What is it you are trying to get? – Rippo Jan 16 '10 at 9:27