mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 16:42:04 +00:00
7170f3c534
* prefer relative links from root * wip * split aggregate function reference * split system tables
689 B
689 B
toc_priority |
---|
105 |
argMin
Syntax: argMin(arg, val)
Calculates the arg
value for a minimal val
value. If there are several different values of arg
for minimal values of val
, the first of these values encountered is output.
Example:
┌─user─────┬─salary─┐
│ director │ 5000 │
│ manager │ 3000 │
│ worker │ 1000 │
└──────────┴────────┘
SELECT argMin(user, salary) FROM salary
┌─argMin(user, salary)─┐
│ worker │
└──────────────────────┘