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

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

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

* `name` ([String](/zh/reference/data-types)) — 数据类型名称。
* `case_insensitive` ([UInt8](/zh/reference/data-types)) — 该属性表示是否可以在查询中以不区分大小写的方式使用数据类型名称。例如，`Date` 和 `date` 都是有效的。
* `alias_to` ([String](/zh/reference/data-types)) — `name` 所对应的数据类型名称，其中 `name` 是其别名。

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

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