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

> Tabela de sistema contendo informações sobre os tipos de dados suportados

# system.data_type_families

<div id="description">
  ## Descrição
</div>

Contém informações sobre os [tipos de dados](/pt-BR/reference/data-types).

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

* `name` ([String](/pt-BR/reference/data-types)) — Nome do tipo de dado.
* `case_insensitive` ([UInt8](/pt-BR/reference/data-types)) — Propriedade que indica se é possível usar um nome de tipo de dado em uma consulta sem diferenciar maiúsculas de minúsculas. Por exemplo, `Date` e `date` são ambos válidos.
* `alias_to` ([String](/pt-BR/reference/data-types)) — Nome do tipo de dado do qual `name` é um alias.

<div id="example">
  ## Exemplo
</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">
  ## Veja também
</div>

* [Sintaxe](/pt-BR/reference/syntax) — Informações sobre a sintaxe suportada.
