ClickHouse/docs/en/sql-reference/table-functions/jdbc.md

27 lines
632 B
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 43
toc_title: jdbc
---
# jdbc {#table-function-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**
2020-03-20 10:10:48 +00:00
``` sql
SELECT * FROM jdbc('jdbc:mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
```
2020-03-20 10:10:48 +00:00
``` sql
SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
```
2020-03-20 10:10:48 +00:00
``` sql
SELECT * FROM jdbc('datasource://mysql-local', 'schema', 'table')
```