mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
21 lines
463 B
SQL
21 lines
463 B
SQL
SELECT UserID, arrayEnumerateUniq(groupArray(SearchPhrase)) AS arr
|
|
FROM
|
|
(
|
|
SELECT UserID, SearchPhrase
|
|
FROM test.hits
|
|
WHERE CounterID = 1704509 AND UserID IN
|
|
(
|
|
SELECT UserID
|
|
FROM test.hits
|
|
WHERE notEmpty(SearchPhrase) AND CounterID = 1704509
|
|
GROUP BY UserID
|
|
HAVING count() > 1
|
|
)
|
|
ORDER BY UserID, WatchID
|
|
)
|
|
WHERE notEmpty(SearchPhrase)
|
|
GROUP BY UserID
|
|
HAVING length(arr) > 1
|
|
ORDER BY UserID
|
|
LIMIT 20
|