ClickHouse/tests/queries/1_stateful/00045_uniq_upto.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

1 line
132 B
MySQL
Raw Normal View History

SELECT RegionID, uniqExact(UserID) AS u1, uniqUpTo(10)(UserID) AS u2 FROM test.visits GROUP BY RegionID HAVING u1 <= 11 AND u1 != u2