mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
d91c97d15d
* Replace underscores with hyphens * remove temporary code * fix style check * fix collapse
733 B
733 B
toc_priority | toc_title |
---|---|
43 | jdbc |
jdbc
jdbc(jdbc_connection_uri, schema, table)
- returns table that is connected via JDBC driver.
This table function requires separate clickhouse-jdbc-bridge
program to be running.
It supports Nullable types (based on DDL of remote table that is queried).
Examples
SELECT * FROM jdbc('jdbc:mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
SELECT * FROM jdbc('datasource://mysql-local', 'schema', 'table')