Hi this seems like very easy task but I could not find answer for it. I would like to get only one row from table where some specific column has maximum value.
So, for example if I have this table:
╔═══════╦═════╦═══════╗
║ Name ║ Age ║ Color ║
╠═══════╬═════╬═══════╣
║ Jakub ║ 55 ║ Red ║
║ Nick ║ 24 ║ Black ║
║ Alice ║ 38 ║ Blue ║
╚═══════╩═════╩═══════╝
I would like to know how can I get the row "Jakub 55 Red" based on that the age is maximal.
I though it will be something like select * from people where age is max
but it doesn't work. I am using TimesTen.