ClickHouse/docs/ja/engines/table-engines/index.md
BayoNet dba72d73fe
DOCS-624: Fixing links to nowhere (#10675)
* enbaskakova-DOCSUP-652 (#101)

* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"

* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"

* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"

* Update docs/en/sql_reference/aggregate_functions/combinators.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/sql_reference/aggregate_functions/combinators.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/sql_reference/aggregate_functions/combinators.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/sql_reference/aggregate_functions/combinators.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/sql_reference/aggregate_functions/combinators.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"

* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"

* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"

Co-authored-by: elenbaskakova <elenbaskakova@yandex-team.ru>
Co-authored-by: BayoNet <da-daos@yandex.ru>

* Revert "enbaskakova-DOCSUP-652 (#101)" (#107)

This reverts commit 639fee7610.

* CLICKHOUSEDOCS-624: Fixed links. Was 60, became 13.

* CLICKHOUSEDOCS-624: Finished fix links in Enlish version.

* CLICKHOUSEDOCS-624: Fixed RU links

Co-authored-by: elenaspb2019 <47083263+elenaspb2019@users.noreply.github.com>
Co-authored-by: elenbaskakova <elenbaskakova@yandex-team.ru>
Co-authored-by: Sergei Shtykov <bayonet@yandex-team.ru>
2020-05-06 09:13:29 +03:00

4.3 KiB
Raw Blame History

machine_translated machine_translated_rev toc_folder_title toc_priority toc_title
true d734a8e46d Table Engines 26 導入

表エンジン

表エンジン(表のタイプ:

  • どのようにデータが格納されている場所、それをどこに書き込むか、どこから読み込むか。
  • どのクエリがサポートされ、どのように。
  • 同時データアクセス。
  • インデックスが存在する場合の使用。
  • マルチスレッドリクエストの実行が可能かどうか。
  • データ複製パラメーター。

エンジン家族

Mergetree

高負荷仕事のための最も普遍的な、機能テーブルエンジン。 本物件の共有によるこれらのエンジンには迅速にデータを挿入とその後のバックグラウンドデータを処となります。 MergeTree 家族のエンジンの支援データレプリケーション( 複製された* バージョンのエンジン)分割、その他の機能で対応していないその他のエンジンです。

家族のエンジン:

ログ

軽量 エンジン 最低の機能性を使って。 多くの小さなテーブル約1万行までをすばやく作成し、後でそれらを全体として読み取る必要がある場合、これらは最も効果的です。

家族のエンジン:

統合エンジン

エンジン用プリケーションデータストレージと処理システム。

家族のエンジン:

特殊エンジン

家族のエンジン:

仮想列

Virtual columnは、エンジンのソースコードで定義されているテーブルエンジンの属性です。

仮想列を指定しないでください。 CREATE TABLE クエリとあなたはそれらを見るこ SHOW CREATE TABLEDESCRIBE TABLE クエリ結果。 仮想列も読み取り専用であるため、仮想列にデータを挿入することはできません。

仮想カラムからデータを選択するには、仮想カラムの名前を指定する必要があります。 SELECT クエリ。 SELECT * 仮想列から値を返しません。

テーブル仮想列のいずれかと同じ名前の列を持つテーブルを作成すると、仮想列にアクセスできなくなります。 これはお勧めしません。 競合を回避するために、通常、仮想列名にはアンダースコアが付加されます。

元の記事