* split up select.md * array-join.md basic refactoring * distinct.md basic refactoring * format.md basic refactoring * from.md basic refactoring * group-by.md basic refactoring * having.md basic refactoring * additional index.md refactoring * into-outfile.md basic refactoring * join.md basic refactoring * limit.md basic refactoring * limit-by.md basic refactoring * order-by.md basic refactoring * prewhere.md basic refactoring * adjust operators/index.md links * adjust sample.md links * adjust more links * adjust operatots links * fix some links * adjust aggregate function article titles * basic refactor of remaining select clauses * absolute paths in make_links.sh * run make_links.sh * remove old select.md locations * translate docs/es * translate docs/fr * translate docs/fa * remove old operators.md location * change operators.md links * adjust links in docs/es * adjust links in docs/es * minor texts adjustments * wip * update machine translations to use new links * fix changelog * es build fixes * get rid of some select.md links * temporary adjust ru links * temporary adjust more ru links * improve curly brace handling * adjust ru as well * fa build fix * ru link fixes * zh link fixes * temporary disable part of anchor checks
7.3 KiB
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | 72537a2d52 |
45 | 丸め |
丸め関数
フロア(x[,N])
以下の最大ラウンド数を返します x
. ラウンド数は1/10Nの倍数、または1/10Nが正確でない場合は適切なデータ型の最も近い数値です。
‘N’ 整数定数、オプションのパラメーターです。 これは整数に丸めることを意味します。
‘N’ 負の場合があります。
例: floor(123.45, 1) = 123.4, floor(123.45, -1) = 120.
x
任意の数値型です。 結果は同じ型の数です。
整数引数の場合、負の値で丸めるのが理にかなっています N
値(負でない場合 N
、関数は何もしません)。
丸めによってオーバーフローが発生した場合(たとえば、floor(-128,-1))、実装固有の結果が返されます。
ceil(x[,N]),ceiling(x[,N])
以上の最小の丸め数を返します x
. 他のすべての方法では、それはと同じです floor
関数(上記参照)。
trunc(x[,N]),truncate(x[,N])
絶対値が以下の最大絶対値を持つ丸め数を返します x
‘s. In every other way, it is the same as the ’floor’ 関数(上記参照)。
round(x[,N])
指定した小数点以下の桁数に値を丸めます。
この関数は、指定された順序の最も近い番号を返します。 指定された数値が周囲の数値と等しい距離を持つ場合、この関数は浮動小数点数型に対してバンカーの丸めを使用し、他の数値型に対してはゼロから
round(expression [, decimal_places])
パラメータ:
expression
— A number to be rounded. Can be any 式 数値を返す データ型.decimal-places
— An integer value.- もし
decimal-places > 0
次に、関数は値を小数点の右側に丸めます。 - もし
decimal-places < 0
次に、この関数は値を小数点の左側に丸めます。 - もし
decimal-places = 0
次に、この関数は値を整数に丸めます。 この場合、引数は省略できます。
- もし
戻り値:
入力番号と同じタイプの丸められた数値。
例
使用例
SELECT number / 2 AS x, round(x) FROM system.numbers LIMIT 3
┌───x─┬─round(divide(number, 2))─┐
│ 0 │ 0 │
│ 0.5 │ 0 │
│ 1 │ 1 │
└─────┴──────────────────────────┘
丸めの例
最も近い数値に丸めます。
round(3.2, 0) = 3
round(4.1267, 2) = 4.13
round(22,-1) = 20
round(467,-2) = 500
round(-467,-2) = -500
バンカーの丸め。
round(3.5) = 4
round(4.5) = 4
round(3.55, 1) = 3.6
round(3.65, 1) = 3.6
も参照。
ラウンドバンカー
数値を指定した小数点以下の位置に丸めます。
-
丸め数が二つの数値の中間にある場合、関数は銀行家の丸めを使用します。
Banker's rounding is a method of rounding fractional numbers. When the rounding number is halfway between two numbers, it's rounded to the nearest even digit at the specified decimal position. For example: 3.5 rounds up to 4, 2.5 rounds down to 2. It's the default rounding method for floating point numbers defined in [IEEE 754](https://en.wikipedia.org/wiki/IEEE_754#Roundings_to_nearest). The [round](#rounding_functions-round) function performs the same rounding for floating point numbers. The `roundBankers` function also rounds integers the same way, for example, `roundBankers(45, -1) = 40`.
-
それ以外の場合、関数は数値を最も近い整数に丸めます。
銀行家の丸めを使用すると、丸めの数値がこれらの数値の合計または減算の結果に与える影響を減らすことができます。
たとえば、丸めが異なる合計値1.5、2.5、3.5、4.5などです:
- 丸めなし: 1.5 + 2.5 + 3.5 + 4.5 = 12.
- バンカーの丸め: 2 + 2 + 4 + 4 = 12.
- 最も近い整数への丸め: 2 + 3 + 4 + 5 = 14.
構文
roundBankers(expression [, decimal_places])
パラメータ
expression
— A number to be rounded. Can be any 式 数値を返す データ型.decimal-places
— Decimal places. An integer number.decimal-places > 0
— The function rounds the number to the given position right of the decimal point. Example:roundBankers(3.55, 1) = 3.6
.decimal-places < 0
— The function rounds the number to the given position left of the decimal point. Example:roundBankers(24.55, -1) = 20
.decimal-places = 0
— The function rounds the number to an integer. In this case the argument can be omitted. Example:roundBankers(2.5) = 2
.
戻り値
バンカーの丸め法によって丸められた値。
例
使用例
クエリ:
SELECT number / 2 AS x, roundBankers(x, 0) AS b fROM system.numbers limit 10
結果:
┌───x─┬─b─┐
│ 0 │ 0 │
│ 0.5 │ 0 │
│ 1 │ 1 │
│ 1.5 │ 2 │
│ 2 │ 2 │
│ 2.5 │ 2 │
│ 3 │ 3 │
│ 3.5 │ 4 │
│ 4 │ 4 │
│ 4.5 │ 4 │
└─────┴───┘
銀行家の丸めの例
roundBankers(0.4) = 0
roundBankers(-3.5) = -4
roundBankers(4.5) = 4
roundBankers(3.55, 1) = 3.6
roundBankers(3.65, 1) = 3.6
roundBankers(10.35, 1) = 10.4
roundBankers(10.755, 2) = 11,76
も参照。
roundToExp2(num)
番号を受け入れます。 数値が一つより小さい場合は、0を返します。 それ以外の場合は、数値を最も近い(負でない全体の)次数まで切り捨てます。
roundDuration(num)
番号を受け入れます。 数値が一つより小さい場合は、0を返します。 それ以外の場合は、数値をセットの数値に切り捨てます: 1, 10, 30, 60, 120, 180, 240, 300, 600, 1200, 1800, 3600, 7200, 18000, 36000. この機能はYandexに固有のものです。Metricaとセッションの長さに関するレポートの実装に使用されます。
roundAge(num)
番号を受け入れます。 数値が18未満の場合は、0を返します。 それ以外の場合は、数値をセットの数値に切り捨てます: 18, 25, 35, 45, 55. この機能はYandexに固有のものです。ユーザー年齢に関するレポートを実装するために使用されます。
ラウンドダウン(num,arr)
数値を受け取り、指定された配列内の要素に切り捨てます。 値が最低限界より小さい場合は、最低限界が返されます。