replace symlinks

This commit is contained in:
DanRoscigno 2022-08-29 12:26:17 -04:00
parent c4b8137d31
commit 76a3212fc8
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
slug: /en/sql-reference/table-functions/null
sidebar_position: 53
sidebar_label: null function
title: null
title: 'null'
---
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 dropped right after the query execution. The function is used for the convenience of test writing and demonstrations.

View File

@ -2,7 +2,7 @@
slug: /en/sql-reference/table-functions/view
sidebar_position: 51
sidebar_label: view
title view
title: view
---
Turns a subquery into a table. The function implements views (see [CREATE VIEW](https://clickhouse.com/docs/en/sql-reference/statements/create/view/#create-view)). The resulting table does not store data, but only stores the specified `SELECT` query. When reading from the table, ClickHouse executes the query and deletes all unnecessary columns from the result.

View File

@ -2,7 +2,7 @@
slug: /zh/sql-reference/table-functions/null
sidebar_position: 53
sidebar_label: null function
title: null
title: 'null'
---
import Content from '@site/docs/en/sql-reference/table-functions/null.md';

View File

@ -2,7 +2,7 @@
slug: /zh/sql-reference/table-functions/view
sidebar_position: 51
sidebar_label: view
title view
title: view
---
import Content from '@site/docs/en/sql-reference/table-functions/view.md';