ClickHouse/docs/ja/sql-reference/functions/conditional-functions.md
Ivan Blinkov cd14f9ebcb
SQL reference refactoring (#10857)
* 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
2020-05-15 07:34:54 +03:00

6.3 KiB
Raw Blame History

machine_translated machine_translated_rev toc_priority toc_title
true 72537a2d52 43 条件付き

条件関数

もし

条件分岐を制御します。 と異なりほとんどのシステムClickHouse常に評価さの両方表現 thenelse.

構文

SELECT if(cond, then, else)

条件が cond ゼロ以外の値に評価され、式の結果を返します then 式の結果 else、存在する場合は、スキップされます。 もし cond ゼロまたは NULL の結果は then 式はスキップされ、 else expressionが存在する場合は、expressionが返されます。

パラメータ

  • cond The condition for evaluation that can be zero or not. The type is UInt8, Nullable(UInt8) or NULL.
  • then -条件が満たされた場合に返される式。
  • else -条件が満たされていない場合に返される式。

戻り値

この関数は実行されます thenelse 式とは、条件かどうかに応じて、その結果を返します cond ゼロかどうかになってしまいました。

クエリ:

SELECT if(1, plus(2, 2), plus(2, 6))

結果:

┌─plus(2, 2)─┐
│          4 │
└────────────┘

クエリ:

SELECT if(0, plus(2, 2), plus(2, 6))

結果:

┌─plus(2, 6)─┐
│          8 │
└────────────┘
  • thenelse 共通タイプが最も低い必要があります。

例:

これを取る LEFT_RIGHT テーブル:

SELECT *
FROM LEFT_RIGHT

┌─left─┬─right─┐
 ᴺᵁᴸᴸ      4 
    1      3 
    2      2 
    3      1 
    4   ᴺᵁᴸᴸ 
└──────┴───────┘

次のクエリは比較します leftright 値:

SELECT
    left,
    right,
    if(left < right, 'left is smaller than right', 'right is greater or equal than left') AS is_smaller
FROM LEFT_RIGHT
WHERE isNotNull(left) AND isNotNull(right)

┌─left─┬─right─┬─is_smaller──────────────────────────┐
    1      3  left is smaller than right          
    2      2  right is greater or equal than left 
    3      1  right is greater or equal than left 
└──────┴───────┴─────────────────────────────────────┘

注: NULL この例では値は使用されません。 条件付きのNULL値 セクション

三項演算子

それは同じように働く if 機能。

構文: cond ? then : else

ツづゥツ。 then もし cond true(ゼロより大きい)と評価されます。 else.

  • cond の型でなければなりません UInt8,and thenelse 共通タイプが最も低い必要があります。

  • thenelse ことができます NULL

も参照。

multif

あなたが書くことができます CASE よりコンパクトにクエリ内の演算子。

構文: multiIf(cond_1, then_1, cond_2, then_2, ..., else)

パラメータ:

  • cond_N — The condition for the function to return then_N.
  • then_N — The result of the function when executed.
  • else — The result of the function if none of the conditions is met.

この関数は 2N+1 変数。

戻り値

関数は、次のいずれかの値を返します then_N または else、条件によって cond_N.

再び使用する LEFT_RIGHT テーブル。

SELECT
    left,
    right,
    multiIf(left < right, 'left is smaller', left > right, 'left is greater', left = right, 'Both equal', 'Null value') AS result
FROM LEFT_RIGHT

┌─left─┬─right─┬─result──────────┐
 ᴺᵁᴸᴸ      4  Null value      
    1      3  left is smaller 
    2      2  Both equal      
    3      1  left is greater 
    4   ᴺᵁᴸᴸ  Null value      
└──────┴───────┴─────────────────┘

条件付き結果を直接使用する

条件は常に次のようになります 0, 1 または NULL. できますので使用条件と結果が直接このような:

SELECT left < right AS is_small
FROM LEFT_RIGHT

┌─is_small─┐
     ᴺᵁᴸᴸ 
        1 
        0 
        0 
     ᴺᵁᴸᴸ 
└──────────┘

条件付きのNULL値

とき NULL 値は条件に含まれ、結果も次のようになります NULL.

SELECT
    NULL < 1,
    2 < NULL,
    NULL < NULL,
    NULL = NULL

┌─less(NULL, 1)─┬─less(2, NULL)─┬─less(NULL, NULL)─┬─equals(NULL, NULL)─┐
 ᴺᵁᴸᴸ           ᴺᵁᴸᴸ           ᴺᵁᴸᴸ              ᴺᵁᴸᴸ               
└───────────────┴───────────────┴──────────────────┴────────────────────┘

その構築お問合せくの場合はタイプ Nullable.

次の例では、equals条件の追加に失敗してこれを示します multiIf.

SELECT
    left,
    right,
    multiIf(left < right, 'left is smaller', left > right, 'right is smaller', 'Both equal') AS faulty_result
FROM LEFT_RIGHT

┌─left─┬─right─┬─faulty_result────┐
 ᴺᵁᴸᴸ      4  Both equal       
    1      3  left is smaller  
    2      2  Both equal       
    3      1  right is smaller 
    4   ᴺᵁᴸᴸ  Both equal       
└──────┴───────┴──────────────────┘

元の記事