> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-fbfa8bee.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> サポートされているデータ型に関する情報を格納したシステムテーブル

# system.data_type_families

<div id="description">
  ## 説明
</div>

サポートされている[データ型](/ja/reference/data-types/index)に関する情報が含まれています。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/reference/data-types/index)) — データ型の名前。
* `case_insensitive` ([UInt8](/ja/reference/data-types/index)) — クエリ内でデータ型名を大文字・小文字を区別せずに使用できるかどうかを示すプロパティ。たとえば、`Date` と `date` はどちらも有効です。
* `alias_to` ([String](/ja/reference/data-types/index)) — `name` が alias となっているデータ型の名前。
* `description` ([String](/ja/reference/data-types/index)) — データ型の概要説明。
* `syntax` ([String](/ja/reference/data-types/index)) — クエリ内でのデータ型の表記方法。
* `examples` ([String](/ja/reference/data-types/index)) — 使用例。
* `introduced_in` ([String](/ja/reference/data-types/index)) — そのデータ型が最初に導入された ClickHouse のバージョン。形式は major.minor です。
* `related` ([Array(String)](/ja/reference/data-types/index)) — 関連するデータ型の名前。

<div id="example">
  ## 例
</div>

```sql theme={null}
SELECT name, case_insensitive, alias_to FROM system.data_type_families WHERE alias_to = 'String'
```

```text theme={null}
┌─name───────┬─case_insensitive─┬─alias_to─┐
│ LONGBLOB   │                1 │ String   │
│ LONGTEXT   │                1 │ String   │
│ TINYTEXT   │                1 │ String   │
│ TEXT       │                1 │ String   │
│ VARCHAR    │                1 │ String   │
│ MEDIUMBLOB │                1 │ String   │
│ BLOB       │                1 │ String   │
│ TINYBLOB   │                1 │ String   │
│ CHAR       │                1 │ String   │
│ MEDIUMTEXT │                1 │ String   │
└────────────┴──────────────────┴──────────┘
```

<div id="see-also">
  ## 関連項目
</div>

* [構文](/ja/reference/syntax) — 対応している構文に関する情報。
