Help wanted!

The following content of this documentation page has been machine-translated. But unlike other websites, it is not done on the fly. This translated text lives on GitHub repository alongside main ClickHouse codebase and waits for fellow native speakers to make it more human-readable. You can also use the original English version as a reference.

Help ClickHouse documentation by editing this page

系统。data_type_families

包含有关受支持的信息 数据类型.

列:

  • name (字符串) — Data type name.
  • case_insensitive (UInt8) — Property that shows whether you can use a data type name in a query in case insensitive manner or not. For example, Datedate 都是有效的。
  • alias_to (字符串) — Data type name for which name 是个化名

示例

  1. SELECT * FROM system.data_type_families WHERE alias_to = 'String'
  1. ┌─name───────┬─case_insensitive─┬─alias_to─┐
  2. LONGBLOB 1 String
  3. LONGTEXT 1 String
  4. TINYTEXT 1 String
  5. TEXT 1 String
  6. VARCHAR 1 String
  7. MEDIUMBLOB 1 String
  8. BLOB 1 String
  9. TINYBLOB 1 String
  10. CHAR 1 String
  11. MEDIUMTEXT 1 String
  12. └────────────┴──────────────────┴──────────┘

另请参阅

  • 语法 — Information about supported syntax.