mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
898 B
898 B
toc_priority |
---|
106 |
argMax
Calculates the arg
value for a maximum val
value. If there are several different values of arg
for maximum values of val
, returns the first of these values encountered.
Syntax
argMax(arg, val)
Arguments
arg
— Argument.val
— Value.
Returned value
arg
value that corresponds to maximumval
value.
Type: matches arg
type.
Example
Input table:
┌─user─────┬─salary─┐
│ director │ 5000 │
│ manager │ 3000 │
│ worker │ 1000 │
└──────────┴────────┘
Query:
SELECT argMax(user, salary) FROM salary;
Result:
┌─argMax(user, salary)─┐
│ director │
└──────────────────────┘