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

지원되는 [데이터 타입](/ko/reference/data-types/index) 정보를 제공합니다.

<div id="columns">
  ## 컬럼
</div>

* `name` ([String](/ko/reference/data-types/index)) — 데이터 타입 이름입니다.
* `case_insensitive` ([UInt8](/ko/reference/data-types/index)) — 쿼리에서 데이터 타입 이름을 대소문자를 구분하지 않고 사용할 수 있는지를 나타내는 속성입니다. 예를 들어 `Date`와 `date`는 모두 유효합니다.
* `alias_to` ([String](/ko/reference/data-types/index)) — `name`의 별칭인 데이터 타입 이름입니다.
* `description` ([String](/ko/reference/data-types/index)) — 해당 데이터 타입에 대한 개괄적인 설명입니다.
* `syntax` ([String](/ko/reference/data-types/index)) — 쿼리에서 데이터 타입을 어떻게 표기하는지입니다.
* `examples` ([String](/ko/reference/data-types/index)) — 사용 예시입니다.
* `introduced_in` ([String](/ko/reference/data-types/index)) — 데이터 타입이 처음 도입된 ClickHouse 버전이며, 형식은 major.minor입니다.
* `related` ([Array(String)](/ko/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>

* [구문](/ko/reference/syntax) — 지원하는 구문에 대한 정보입니다.
