ClickHouse/tests/queries/0_stateless/01717_global_with_subquery_fix.sql

4 lines
329 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: global
2021-02-14 06:20:23 +00:00
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}