mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
21 lines
461 B
MySQL
21 lines
461 B
MySQL
|
SELECT UserID, arrayEnumerateUniq(groupArray(SearchPhrase)) AS arr
|
||
|
FROM
|
||
|
(
|
||
|
SELECT UserID, SearchPhrase
|
||
|
FROM test.hits
|
||
|
WHERE CounterID = 731962 AND UserID IN
|
||
|
(
|
||
|
SELECT UserID
|
||
|
FROM test.hits
|
||
|
WHERE notEmpty(SearchPhrase) AND CounterID = 731962
|
||
|
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
|