mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
0f92fe9ad2
* Update WITH desc * Update docs/en/sql-reference/statements/select/with.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/sql-reference/statements/select/with.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/sql-reference/statements/select/with.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Fixed, ru translated * Update docs/en/sql-reference/statements/select/with.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Fixed syntax description * Update docs/ru/sql-reference/statements/select/with.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update Co-authored-by: BayoNet <da-daos@yandex.ru>
1.6 KiB
1.6 KiB
toc_title |
---|
WITH |
WITH Clause
Clickhouse supports Common Table Expressions (CTE), that is provides to use results of WITH
clause in the rest of SELECT
query. Named subqueries can be included to the current and child query context in places where table objects are allowed. Recursion is prevented by hiding the current level CTEs from the WITH expression.
Syntax
WITH <expression> AS <identifier>
or
WITH <identifier> AS <subquery expression>
Examples
Example 1: Using constant expression as “variable”
WITH '2019-08-01 15:23:00' as ts_upper_bound
SELECT *
FROM hits
WHERE
EventDate = toDate(ts_upper_bound) AND
EventTime <= ts_upper_bound;
Example 2: Evicting a sum(bytes) expression result from the SELECT clause column list
WITH sum(bytes) as s
SELECT
formatReadableSize(s),
table
FROM system.parts
GROUP BY table
ORDER BY s;
Example 3: Using results of a scalar subquery
/* this example would return TOP 10 of most huge tables */
WITH
(
SELECT sum(bytes)
FROM system.parts
WHERE active
) AS total_disk_usage
SELECT
(sum(bytes) / total_disk_usage) * 100 AS table_disk_usage,
table
FROM system.parts
GROUP BY table
ORDER BY table_disk_usage DESC
LIMIT 10;
Example 4: Reusing expression in a subquery
WITH test1 AS (SELECT i + 1, j + 1 FROM test1)
SELECT * FROM test1;