2020-06-18 08:24:31 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/aggregate-functions/reference/argmax
2022-04-09 13:29:05 +00:00
sidebar_position: 106
2020-06-18 08:24:31 +00:00
---
2022-06-02 10:55:18 +00:00
# argMax
2020-06-18 08:24:31 +00:00
2021-02-05 08:14:51 +00:00
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.
2020-06-18 08:24:31 +00:00
2021-02-05 08:14:51 +00:00
**Syntax**
2020-11-24 11:25:45 +00:00
2021-02-05 08:14:51 +00:00
``` sql
argMax(arg, val)
```
2021-02-15 21:33:53 +00:00
**Arguments**
2021-02-05 08:14:51 +00:00
2023-04-19 15:55:29 +00:00
- `arg` — Argument.
- `val` — Value.
2021-02-05 08:14:51 +00:00
**Returned value**
2023-04-19 15:55:29 +00:00
- `arg` value that corresponds to maximum `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:
2020-11-24 11:25:45 +00:00
``` text
┌─user─────┬─salary─┐
│ director │ 5000 │
│ manager │ 3000 │
│ worker │ 1000 │
└──────────┴────────┘
```
2021-02-05 08:14:51 +00:00
Query:
2020-11-24 11:25:45 +00:00
``` sql
2021-04-20 21:22:29 +00:00
SELECT argMax(user, salary) FROM salary;
2020-11-24 11:25:45 +00:00
```
2021-02-05 08:14:51 +00:00
Result:
2020-11-24 11:25:45 +00:00
``` text
2021-04-20 21:22:29 +00:00
┌─argMax(user, salary)─┐
│ director │
└──────────────────────┘
2020-11-24 11:25:45 +00:00
```