> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.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)に関する情報が含まれています。

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

* `name` ([String](/ja/reference/data-types)) — データ型の名前。
* `case_insensitive` ([UInt8](/ja/reference/data-types)) — クエリ内でデータ型名を大文字・小文字を区別せずに使用できるかどうかを示すプロパティ。たとえば、`Date` と `date` はどちらも有効です。
* `alias_to` ([String](/ja/reference/data-types)) — `name` が alias となっているデータ型の名前。

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

```sql theme={null}
SELECT * 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) — 対応している構文に関する情報。
