Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to select a maximum value row in mysql table

I have the following table

Table structure:

CREATE TABLE IF NOT EXISTS `people` ( 
`name` varchar(10) NOT NULL, 
`age` smallint(5) unsigned NOT NULL, 
PRIMARY KEY (`name`) 
) ENGINE=InnoDB DEFAULT CHARSET=latin1; 

Insert some values:

INSERT INTO `people` (`name`, `age`) VALUES 
('bob', 13), 
('john', 25), 
('steve', 8), 
('sue', 13); 

Executed Query:

SELECT MAX(  `age` ) ,  `name` FROM  `people` WHERE 1

Expected Result:

25, John

Generated Result

25, bob

We can achieve this by using this query

SELECT `age`,  `name` FROM  `people` ORDER BY age DESC LIMIT 1

Question 1 : What I made mistake here and why this MAX function is not return the relevant row information?

Question 2: Which one is good to use, to increase performance MAX function or ORDER BY clause?

like image 234
Sundar Avatar asked Jun 26 '13 11:06

Sundar


4 Answers

Question 1 : What I made mistake here and why this MAX function is not return the relevant row information?

You need to read up on the group by clause.

MySQL is being a lot more permissive than it should, introducing confusion in the process. Basically, any column without an aggregate should be included in the group by clause. But MySQL syntactic sugar allows to "forget" columns. When you do, MySQL spits out an arbitrary value from the set that it's grouping by. In your case, the first row in the set is bob, so it returns that.

Question 2: Which one is good to use, to increase performance MAX function or ORDER BY clause?

Your first statement (using max() without a group by) is simply incorrect.

If you want one of the oldest users, order by age desc limit 1 is the correct way to proceed.

If you want all of the oldest users, you need a subselect:

SELECT p.* FROM people p WHERE p.age = (select max(subp.age) from people subp);
like image 128
Denis de Bernardy Avatar answered Oct 13 '22 18:10

Denis de Bernardy


try this

SELECT age, name FROM  `people` where age = (SELECT max(age) FROM  people)
like image 40
Napster Avatar answered Oct 13 '22 20:10

Napster


Yet another solution with no use of agregate functions and groupings:

SELECT * FROM people ORDER BY age DESC LIMIT 1

like image 34
ghost28147 Avatar answered Oct 13 '22 19:10

ghost28147


What I made mistake here and why this MAX function is not return the relevant row information?

MAX is returning the correct value - but the other column you select just gives you a "random" value.

Selecting columns that are not part of the GROUPing (and I think implicit GROUP BY is done here since you use an aggregate function) is illegal in strict SQL - MySQL however ignores that (depending on server config), and gives you a value from a "random" row in such cases.


Alternative approaches are described here: The Rows Holding the Group-wise Maximum of a Certain Column

like image 39
CBroe Avatar answered Oct 13 '22 20:10

CBroe