ClickHouse/tests/queries/0_stateless/01717_global_with_subquery_fix.sql
2021-09-12 17:15:28 +03:00

4 lines
329 B
SQL

-- Tags: global
WITH (SELECT count(distinct colU) from tabA) AS withA, (SELECT count(distinct colU) from tabA) AS withB SELECT withA / withB AS ratio FROM (SELECT date AS period, colX FROM (SELECT date, if(colA IN (SELECT colB FROM tabC), 0, colA) AS colX FROM tabB) AS tempB GROUP BY period, colX) AS main; -- {serverError 60}