嗨,这似乎很容易,但我找不到答案。我想从表中只得到一行,其中某些特定列具有最大值。
因此,例如,如果我有这张桌子:
╔═══════╦═════╦═══════╗
║ Name ║ Age ║ Color ║
╠═══════╬═════╬═══════╣
║ Jakub ║ 55 ║ Red ║
║ Nick ║ 24 ║ Black ║
║ Alice ║ 38 ║ Blue ║
╚═══════╩═════╩═══════╝
我想知道如何根据年龄最大获得“Jakub 55 Red”行。
我虽然会是这样,select * from people where age is max
但它不起作用。我正在使用 TimesTen。