Connect to local ClickHouse, ClickHouse Cloud, Aiven, etc.
You can define the external table and use it to read data from the ClickHouse table, or write to it.
Connect to a local ClickHouse
Example SQL to connect to a local ClickHouse server without password:
CREATE EXTERNAL TABLE ch_local
SETTINGS type='clickhouse',
address='localhost:9000',
table='events'