ClickHouse/tests/queries/0_stateless/01532_having_with_totals.sql

45 lines
639 B
MySQL
Raw Normal View History

2020-10-23 19:37:54 +00:00
drop table if exists local_t;
create table local_t engine Log as select 1 a;
SELECT '127.0.0.{1,2}';
SELECT *
FROM
(
SELECT a
2020-10-23 21:05:24 +00:00
FROM remote('127.0.0.{1,2}', currentDatabase(), local_t)
2020-10-23 19:37:54 +00:00
GROUP BY a
WITH TOTALS
)
WHERE a IN
(
SELECT 1
);
SELECT '127.0.0.1';
SELECT *
FROM
(
SELECT a
2020-10-23 21:05:24 +00:00
FROM remote('127.0.0.1', currentDatabase(), local_t)
2020-10-23 19:37:54 +00:00
GROUP BY a
WITH TOTALS
)
WHERE a IN
(
SELECT 1
);
SELECT 'with explicit having';
SELECT
a,
count()
2020-10-23 21:05:24 +00:00
FROM remote('127.0.0.{1,2}', currentDatabase(), local_t)
2020-10-23 19:37:54 +00:00
GROUP BY a
WITH TOTALS
HAVING a IN
(
SELECT 1
);
drop table if exists local_t;