I have the following table
Table structure:
CREATE TABLE IF NOT EXISTS `people` ( `name` varchar(10) NOT NULL, `age` smallint(5) u
try this
SELECT age, name FROM `people` where age = (SELECT max(age) FROM people)