> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

> 異なるレベルにおける複数の分位点を同時に厳密に計算し、要素数が偶数の場合は中央の2つのうち小さい方の値を返します。

# quantilesExactLow

<div id="quantilesExactLow">
  ## quantilesExactLow
</div>

導入バージョン: v20.8.0

異なるレベルにおける数値データ列の複数の [分位点](https://en.wikipedia.org/wiki/Quantile) を同時に厳密に計算します。レベル `0.5` で要素数が偶数の場合は、中央の 2 つの値のうち小さい方を返します。

この関数は [`quantileExactLow`](/docs/ja/reference/functions/aggregate-functions/quantileExactLow) と同等ですが、1 回の処理で複数の分位点レベルを計算できるため、個別の分位点関数を呼び出すより効率的です。

**構文**

```sql theme={null}
quantilesExactLow(level1, level2, ...)(expr)
```

**パラメータ**

* `level` — 分位点のレベル。0 から 1 までの範囲の定数の浮動小数点数を 1 つ以上指定します。`level` の値には `[0.01, 0.99]` の範囲を使用することを推奨します。[`Float*`](/docs/ja/reference/data-types/float)

**引数**

* `expr` — カラム値に対する式で、評価結果は数値データ型、`Date`、`DateTime`、または `DateTime64` です。[`(U)Int*`](/docs/ja/reference/data-types/int-uint) または [`Float*`](/docs/ja/reference/data-types/float) または [`Decimal*`](/docs/ja/reference/data-types/decimal) または [`Date`](/docs/ja/reference/data-types/date) または [`DateTime`](/docs/ja/reference/data-types/datetime) または [`DateTime64`](/docs/ja/reference/data-types/datetime64)

**戻り値**

指定したレベルの分位点を、指定したレベルと同じ順序で格納した Array です。数値データ型の場合、出力フォーマットは入力フォーマットと同じです。[`Array((U)Int*)`](/docs/ja/reference/data-types/array) または [`Array(Float*)`](/docs/ja/reference/data-types/array) または [`Array(Decimal*)`](/docs/ja/reference/data-types/array) または [`Array(Date)`](/docs/ja/reference/data-types/array) または [`Array(DateTime)`](/docs/ja/reference/data-types/array) または [`Array(DateTime64)`](/docs/ja/reference/data-types/array)

**例**

**複数の厳密な低位分位点を計算する**

```sql title=Query theme={null}
SELECT quantilesExactLow(0.25, 0.5, 0.75)(number) FROM numbers(10)
```

```response title=Response theme={null}
┌─quantilesExactLow(0.25, 0.5, 0.75)(number)─┐
│ [2,4,7]                                    │
└────────────────────────────────────────────┘
```
