ClickHouse/docs/en/sql-reference/table-functions/null.md

44 lines
1.1 KiB
Markdown
Raw Normal View History

2020-10-30 01:09:42 +00:00
---
toc_priority: 53
toc_title: null function
---
# null {#null-function}
Creates a temporary table of the specified structure with the [Null](../../engines/table-engines/special/null.md) table engine. According to the `Null`-engine properties, the table data is ignored and the table itself is immediately droped right after the query execution. The function is used for the convenience of test writing and demonstrations.
2020-10-30 01:09:42 +00:00
**Syntax**
``` sql
null('structure')
```
**Parameter**
- `structure` — A list of columns and column types. [String](../../sql-reference/data-types/string.md).
**Returned value**
A temporary `Null`-engine table with the specified structure.
2020-10-30 01:09:42 +00:00
**Example**
Query with the `null` function:
``` sql
INSERT INTO function null('x UInt64') SELECT * FROM numbers_mt(1000000000);
```
can replace three queries:
```sql
CREATE TABLE t (x UInt64) ENGINE = Null;
INSERT INTO t SELECT * FROM numbers_mt(1000000000);
DROP TABLE IF EXISTS t;
```
See also:
- [Null table engine](../../engines/table-engines/special/null.md)
2020-11-04 09:20:06 +00:00
2020-10-30 01:09:42 +00:00
[Original article](https://clickhouse.tech/docs/en/sql-reference/table-functions/null/) <!--hide-->