

 Amazon Redshift は、パッチ 198 以降、新しい Python UDF の作成をサポートしなくなります。既存の Python UDF は、2026 年 6 月 30 日まで引き続き機能します。詳細については、[ブログ記事](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/)を参照してください。

# enable\$1numeric\$1rounding
<a name="r_enable_numeric_rounding"></a>

## 値 (デフォルトは太字）
<a name="r_enable_numeric_rounding-values"></a>

on (true)、**off (false)**

## 説明
<a name="r_enable_numeric_rounding-description"></a>

数値の四捨五入を使用するかどうかを指定します。`enable_numeric_rounding` が `on` である場合、Amazon Redshift は、数値を整数や 10 進数などの他の数値型にキャストするとき、四捨五入します。`enable_numeric_rounding` が `off` である場合、Amazon Redshift は、数値を他の数値型にキャストするとき、数値を切り捨てます。数値型の詳細については、「[数値型](r_Numeric_types201.md)」を参照してください。

## 例
<a name="r_enable_numeric_rounding-example"></a>

```
--Create a table and insert the numeric value 1.5 into it.
CREATE TABLE t (a numeric(10, 2));

INSERT INTO t VALUES (1.5);

SET enable_numeric_rounding to ON;
--Amazon Redshift now rounds NUMERIC values when casting to other numeric types.

SELECT a::int FROM t;

 a
---
 2
(1 row)


SELECT a::decimal(10, 0) FROM t;

 a
---
 2
(1 row)


 SELECT a::decimal(10, 5) FROM t;
 
    a
---------
 1.50000
(1 row)


SET enable_numeric_rounding to OFF;
--Amazon Redshift now truncates NUMERIC values when casting to other numeric types.

SELECT a::int FROM t;

 a
---
 1
(1 row)


SELECT a::decimal(10, 0) FROM t;

 a
---
 1
(1 row)


SELECT a::decimal(10, 5) FROM t;

    a
---------
 1.50000
(1 row)
```