mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
6 lines
328 B
MySQL
6 lines
328 B
MySQL
|
with (select count() > 0 from remote('127.2', system.settings)) as s select s;
|
||
|
-- nested
|
||
|
with (select count() > 0 from remote('127.2', remote('127.2', system.settings))) as s select s;
|
||
|
-- nested via view()
|
||
|
with (select count() > 0 from remote('127.2', view(select count() from remote('127.2', system.settings)))) as s select s;
|