ClickHouse/docs/en/engines/table-engines/special/null.md

14 lines
470 B
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 38
toc_title: 'Null'
---
2020-06-10 20:16:54 +00:00
# Null Table Engine {#null}
2017-04-03 19:49:50 +00:00
2020-06-10 20:16:54 +00:00
When writing to a `Null` table, data is ignored. When reading from a `Null` table, the response is empty.
2017-04-03 19:49:50 +00:00
2020-06-10 20:16:54 +00:00
!!! info "Hint"
However, you can create a materialized view on a `Null` table. So the data written to the table will end up affecting the view, but original raw data will still be discarded.
[Original article](https://clickhouse.com/docs/en/operations/table_engines/null/) <!--hide-->