mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
115807e77a
* my changes to gitignore
* Corrections in English docs and Russian docs added.
* TOC corrections
* TOC fixed
* Revert "my changes to gitignore"
This reverts commit 5884b1e79b
.
* Update docs/en/sql-reference/table-functions/null.md
* Update docs/en/sql-reference/table-functions/null.md
* Update docs/ru/sql-reference/table-functions/null.md
* Update docs/ru/sql-reference/table-functions/null.md
Co-authored-by: Olga Revyakina <revolg@yandex-team.ru>
Co-authored-by: BayoNet <da-daos@yandex.ru>
44 lines
1.5 KiB
Markdown
44 lines
1.5 KiB
Markdown
---
|
||
toc_priority: 53
|
||
toc_title: null функция
|
||
---
|
||
|
||
# null {#null-function}
|
||
|
||
Создает временную таблицу указанной структуры с движком [Null](../../engines/table-engines/special/null.md). В соответствии со свойствами движка, данные в таблице игнорируются, а сама таблица удаляется сразу после выполнения запроса. Функция используется для удобства написания тестов и демонстрационных примеров.
|
||
|
||
**Синтаксис**
|
||
|
||
``` sql
|
||
null('structure')
|
||
```
|
||
|
||
**Параметр**
|
||
|
||
- `structure` — список колонок и их типов. [String](../../sql-reference/data-types/string.md).
|
||
|
||
**Возвращаемое значение**
|
||
|
||
Временная таблица указанной структуры с движком `Null`.
|
||
|
||
**Пример**
|
||
|
||
Один запрос с функцией `null`:
|
||
|
||
``` sql
|
||
INSERT INTO function null('x UInt64') SELECT * FROM numbers_mt(1000000000);
|
||
```
|
||
заменяет три запроса:
|
||
|
||
```sql
|
||
CREATE TABLE t (x UInt64) ENGINE = Null;
|
||
INSERT INTO t SELECT * FROM numbers_mt(1000000000);
|
||
DROP TABLE IF EXISTS t;
|
||
```
|
||
|
||
См. также:
|
||
|
||
- [Движок таблиц Null](../../engines/table-engines/special/null.md)
|
||
|
||
[Original article](https://clickhouse.tech/docs/en/sql-reference/table-functions/null/) <!--hide-->
|