mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
14 lines
255 B
MySQL
14 lines
255 B
MySQL
|
SELECT * FROM
|
||
|
(
|
||
|
SELECT UserID AS id, 1 AS event
|
||
|
FROM remote('127.0.0.{1,2}', test, hits)
|
||
|
ORDER BY id DESC
|
||
|
LIMIT 10
|
||
|
UNION ALL
|
||
|
SELECT FUniqID AS id, 2 AS event
|
||
|
FROM remote('127.0.0.{1,2}', test, hits)
|
||
|
ORDER BY id DESC
|
||
|
LIMIT 10
|
||
|
)
|
||
|
ORDER BY id, event;
|