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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/table-functions/jdbc
sidebar_position: 43
sidebar_label: jdbc
2020-04-03 13:23:32 +00:00
---
2022-06-02 10:55:18 +00:00
# jdbc
2021-06-11 09:37:38 +00:00
`jdbc(datasource, schema, table)` - returns table that is connected via JDBC driver.
2021-06-11 09:37:38 +00:00
This table function requires separate [clickhouse-jdbc-bridge](https://github.com/ClickHouse/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
2021-06-11 09:37:38 +00:00
SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'select * from schema.table')
```
2020-03-20 10:10:48 +00:00
``` sql
2021-06-11 09:37:38 +00:00
SELECT * FROM jdbc('mysql-dev?p1=233', 'num Int32', 'select toInt32OrZero(''{{p1}}'') as num')
```
2021-06-11 09:37:38 +00:00
``` sql
2021-07-29 15:20:55 +00:00
SELECT *
2021-06-11 09:37:38 +00:00
FROM jdbc('mysql-dev?p1=233', 'num Int32', 'select toInt32OrZero(''{{p1}}'') as num')
```
``` sql
SELECT a.datasource AS server1, b.datasource AS server2, b.name AS db
FROM jdbc('mysql-dev?datasource_column', 'show databases') a
INNER JOIN jdbc('self?datasource_column', 'show databases') b ON a.Database = b.name
```