mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
939 B
939 B
slug | sidebar_position |
---|---|
/en/sql-reference/aggregate-functions/reference/argmin | 105 |
argMin
Calculates the arg
value for a minimum val
value. If there are several different values of arg
for minimum values of val
, returns the first of these values encountered.
Syntax
argMin(arg, val)
Arguments
arg
— Argument.val
— Value.
Returned value
arg
value that corresponds to minimumval
value.
Type: matches arg
type.
Example
Input table:
┌─user─────┬─salary─┐
│ director │ 5000 │
│ manager │ 3000 │
│ worker │ 1000 │
└──────────┴────────┘
Query:
SELECT argMin(user, salary) FROM salary
Result:
┌─argMin(user, salary)─┐
│ worker │
└──────────────────────┘