mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
31 lines
582 B
SQL
31 lines
582 B
SQL
select * from ( select 'table' as table, toInt64(10) as rows, toInt64(101) as elements union all select 'another table' as table, toInt64(0) as rows, toInt64(0) as elements ) where rows - elements <> 0;
|
||
|
||
SELECT
|
||
label,
|
||
number
|
||
FROM
|
||
(
|
||
SELECT
|
||
'a' AS label,
|
||
number
|
||
FROM
|
||
(
|
||
SELECT number
|
||
FROM numbers(10)
|
||
)
|
||
UNION ALL
|
||
SELECT
|
||
'b' AS label,
|
||
number
|
||
FROM
|
||
(
|
||
SELECT number
|
||
FROM numbers(10)
|
||
)
|
||
)
|
||
WHERE number IN
|
||
(
|
||
SELECT number
|
||
FROM numbers(5)
|
||
) order by label, number;
|