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

> Tabla del sistema que contiene información sobre los tipos de datos admitidos

# system.data_type_families

<div id="description">
  ## Descripción
</div>

Contiene información sobre los [tipos de datos](/es/reference/data-types).

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

* `name` ([String](/es/reference/data-types)) — Nombre del tipo de dato.
* `case_insensitive` ([UInt8](/es/reference/data-types)) — Propiedad que indica si un nombre de tipo de dato puede usarse en una consulta sin distinguir entre mayúsculas y minúsculas. Por ejemplo, `Date` y `date` son válidos.
* `alias_to` ([String](/es/reference/data-types)) — Nombre del tipo de dato del que `name` es un alias.

<div id="example">
  ## Ejemplo
</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">
  ## Véase también
</div>

* [Sintaxis](/es/reference/syntax) — Información sobre la sintaxis admitida.
