ClickHouse/docs/ja/sql-reference/functions/ext-dict-functions.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

7.4 KiB
Raw Blame History

machine_translated machine_translated_rev toc_priority toc_title
true d734a8e46d 58 外部辞書の操作

外部辞書を操作するための関数

情報の接続や設定の外部辞書参照 外部辞書.

dictGet

外部ディクショナリから値を取得します。

dictGet('dict_name', 'attr_name', id_expr)
dictGetOrDefault('dict_name', 'attr_name', id_expr, default_value_expr)

パラメータ

  • dict_name — Name of the dictionary. 文字列リテラル.
  • attr_name — Name of the column of the dictionary. 文字列リテラル.
  • id_expr — Key value. を返す UInt64 または タプル-辞書構成に応じて値を入力します。
  • default_value_expr — Value returned if the dictionary doesnt contain a row with the id_expr キー。 に設定されたデータ型の値を返します。 attr_name 属性。

戻り値

  • クリックハウスで属性が正常に解析された場合 属性のデータ型、関数は、に対応する辞書属性の値を返します id_expr.

  • キーがない場合、対応する id_expr、辞書では、その後:

    - `dictGet` returns the content of the `<null_value>` element specified for the attribute in the dictionary configuration.
    - `dictGetOrDefault` returns the value passed as the `default_value_expr` parameter.
    

ClickHouseは、属性の値を解析できない場合、または値が属性データ型と一致しない場合に例外をスローします。

例えば

テキストファイルの作成 ext-dict-text.csv 以下を含む:

1,1
2,2

最初の列は次のとおりです id、第二の列は c1.

外部ディクショナリの設定:

<yandex>
    <dictionary>
        <name>ext-dict-test</name>
        <source>
            <file>
                <path>/path-to/ext-dict-test.csv</path>
                <format>CSV</format>
            </file>
        </source>
        <layout>
            <flat />
        </layout>
        <structure>
            <id>
                <name>id</name>
            </id>
            <attribute>
                <name>c1</name>
                <type>UInt32</type>
                <null_value></null_value>
            </attribute>
        </structure>
        <lifetime>0</lifetime>
    </dictionary>
</yandex>

クエリの実行:

SELECT
    dictGetOrDefault('ext-dict-test', 'c1', number + 1, toUInt32(number * 10)) AS val,
    toTypeName(val) AS type
FROM system.numbers
LIMIT 3
┌─val─┬─type───┐
│   1 │ UInt32 │
│   2 │ UInt32 │
│  20 │ UInt32 │
└─────┴────────┘

また見なさい

dictHas

キーが辞書に存在するかどうかを確認します。

dictHas('dict_name', id_expr)

パラメータ

戻り値

  • 0、キーがない場合。
  • 1、キーがある場合。

タイプ: UInt8.

独裁主義体制

キーのすべての親を含む配列を作成します。 階層辞書.

構文

dictGetHierarchy('dict_name', key)

パラメータ

戻り値

  • キーの親。

タイプ: 配列(uint64).

ディクティシン

辞書内の階層チェーン全体を通じてキーの祖先をチェックします。

dictIsIn('dict_name', child_id_expr, ancestor_id_expr)

パラメータ

  • dict_name — Name of the dictionary. 文字列リテラル.
  • child_id_expr — Key to be checked. を返す UInt64-タイプ値。
  • ancestor_id_expr — Alleged ancestor of the child_id_expr キー。 を返す UInt64-タイプ値。

戻り値

  • 0,if child_id_expr の子ではありません ancestor_id_expr.
  • 1、場合 child_id_expr の子です ancestor_id_expr または child_id_exprancestor_id_expr.

タイプ: UInt8.

その他の機能

ClickHouseは、辞書構成に関係なく、辞書属性値を特定のデータ型に変換する特殊な関数をサポートしています。

機能:

  • dictGetInt8, dictGetInt16, dictGetInt32, dictGetInt64
  • dictGetUInt8, dictGetUInt16, dictGetUInt32, dictGetUInt64
  • dictGetFloat32, dictGetFloat64
  • dictGetDate
  • dictGetDateTime
  • dictGetUUID
  • dictGetString

これらの機能はすべて、 OrDefault 変更。 例えば, dictGetDateOrDefault.

構文:

dictGet[Type]('dict_name', 'attr_name', id_expr)
dictGet[Type]OrDefault('dict_name', 'attr_name', id_expr, default_value_expr)

パラメータ

  • dict_name — Name of the dictionary. 文字列リテラル.
  • attr_name — Name of the column of the dictionary. 文字列リテラル.
  • id_expr — Key value. を返す UInt64-タイプ値。
  • default_value_expr — Value which is returned if the dictionary doesnt contain a row with the id_expr キー。 に設定されたデータ型の値を返します。 attr_name 属性。

戻り値

  • クリックハウスで属性が正常に解析された場合 属性のデータ型、関数は、に対応する辞書属性の値を返します id_expr.

  • 要求がない場合 id_expr 辞書では、:

    - `dictGet[Type]` returns the content of the `<null_value>` element specified for the attribute in the dictionary configuration.
    - `dictGet[Type]OrDefault` returns the value passed as the `default_value_expr` parameter.
    

ClickHouseは、属性の値を解析できない場合、または値が属性データ型と一致しない場合に例外をスローします。

元の記事