ClickHouse/docs/en/sql-reference/aggregate-functions/reference/argmin.md

51 lines
901 B
Markdown
Raw Normal View History

---
sidebar_position: 105
---
# argMin {#agg-function-argmin}
2021-02-06 10:23:57 +00:00
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.
2021-02-05 08:14:51 +00:00
**Syntax**
2021-02-05 08:14:51 +00:00
``` sql
argMin(arg, val)
```
**Arguments**
2021-02-05 08:14:51 +00:00
- `arg` — Argument.
- `val` — Value.
**Returned value**
2021-02-06 10:23:57 +00:00
- `arg` value that corresponds to minimum `val` value.
2021-02-05 08:14:51 +00:00
2021-04-20 21:22:29 +00:00
Type: matches `arg` type.
2021-02-05 08:14:51 +00:00
**Example**
Input table:
``` text
┌─user─────┬─salary─┐
│ director │ 5000 │
│ manager │ 3000 │
│ worker │ 1000 │
└──────────┴────────┘
```
2021-02-05 08:14:51 +00:00
Query:
``` sql
2021-04-20 21:22:29 +00:00
SELECT argMin(user, salary) FROM salary
```
2021-02-05 08:14:51 +00:00
Result:
``` text
2021-04-20 21:22:29 +00:00
┌─argMin(user, salary)─┐
│ worker │
└──────────────────────┘
```