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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
3.8 KiB
Markdown
Raw Normal View History

---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/aggregate-functions/reference/argmin
sidebar_position: 105
---
2022-06-02 10:55:18 +00:00
# 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.
2023-06-06 13:25:32 +00:00
Both parts the `arg` and the `min` behave as [aggregate functions](../index.md), they both [skip `Null`](../index.md#null-processing) during processing and return not Null values if not Null values are available.
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.
2021-02-05 08:14:51 +00:00
**Returned value**
- `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 │
└──────────────────────┘
```
2023-06-05 19:43:07 +00:00
**Extended example**
```sql
CREATE TABLE test
(
a Nullable(String),
b Nullable(Int64)
)
ENGINE = Memory AS
SELECT *
FROM values((NULL, 0), ('a', 1), ('b', 2), ('c', 2), (NULL, NULL), ('d', NULL));
select * from test;
┌─a────┬────b─┐
│ ᴺᵁᴸᴸ │ 0 │
│ a │ 1 │
│ b │ 2 │
│ c │ 2 │
│ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │
│ d │ ᴺᵁᴸᴸ │
└──────┴──────┘
select argMin(a, b), min(b) from test;
┌─argMin(a, b)─┬─min(b)─┐
│ a │ 0 │ -- argMin = a because it the first not Null value, min(b) is from another row!
2023-06-05 19:43:07 +00:00
└──────────────┴────────┘
select argMin(tuple(a), b) from test;
┌─argMin(tuple(a), b)─┐
│ (NULL) │ -- Tuple allows to get Null value.
└─────────────────────┘
select (argMin((a, b), b) as t).1 argMinA, t.2 argMinB from test;
┌─argMinA─┬─argMinB─┐
2023-06-05 19:57:28 +00:00
│ ᴺᵁᴸᴸ │ 0 │ -- you can use Tuple and get both (all - tuple(*)) columns for the according max(b)
2023-06-05 19:43:07 +00:00
└─────────┴─────────┘
select argMin(a, b), min(b) from test where a is Null and b is Null;
┌─argMin(a, b)─┬─min(b)─┐
2023-06-06 13:25:32 +00:00
│ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ -- All aggregated rows contains at least one `NULL` value because of the filter, so all rows are skipped, therefore the result will be `NULL`
2023-06-05 19:43:07 +00:00
└──────────────┴────────┘
select argMin(a, (b, a)), min(tuple(b, a)) from test;
┌─argMin(a, tuple(b, a))─┬─min(tuple(b, a))─┐
│ d │ (NULL,NULL) │ -- 'd' is the first not Null value for the min
2023-06-05 19:43:07 +00:00
└────────────────────────┴──────────────────┘
select argMin((a, b), (b, a)), min(tuple(b, a)) from test;
┌─argMin(tuple(a, b), tuple(b, a))─┬─min(tuple(b, a))─┐
2023-06-06 13:25:32 +00:00
│ (NULL,NULL) │ (NULL,NULL) │ -- argMin returns (NULL,NULL) here because Tuple allows to don't skip Nulls and min(tuple(b, a)) in this case is minimal value for this dataset
2023-06-05 19:43:07 +00:00
└──────────────────────────────────┴──────────────────┘
select argMin(a, tuple(b)) from test;
┌─argMax(a, tuple(b))─┐
│ d │ -- Tuple can be used in `min` to not skip rows with Null values as b.
2023-06-05 19:43:07 +00:00
└─────────────────────┘
```
**See also**
- [Tuple](../../data-types/tuple.md)