> ## 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>

包含有关所支持的[数据类型](/zh/reference/data-types/index)的信息。

<div id="columns">
  ## 列
</div>

* `name` ([String](/zh/reference/data-types/index)) — 数据类型名称。
* `case_insensitive` ([UInt8](/zh/reference/data-types/index)) — 该属性表示是否可以在查询中以不区分大小写的方式使用数据类型名称。例如，`Date` 和 `date` 都是有效的。
* `alias_to` ([String](/zh/reference/data-types/index)) — `name` 所对应的数据类型名称，其中 `name` 是其别名。
* `description` ([String](/zh/reference/data-types/index)) — 对该数据类型的概括性描述。
* `syntax` ([String](/zh/reference/data-types/index)) — 该数据类型在查询中的写法。
* `examples` ([String](/zh/reference/data-types/index)) — 使用示例。
* `introduced_in` ([String](/zh/reference/data-types/index)) — 首次引入该数据类型的 ClickHouse 版本，格式为 major.minor。
* `related` ([Array(String)](/zh/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>

* [语法](/zh/reference/syntax) — 支持的语法信息。
