2020-04-08 14:22:25 +00:00
|
|
|
|
---
|
|
|
|
|
machine_translated: true
|
2020-05-15 04:34:54 +00:00
|
|
|
|
machine_translated_rev: 72537a2d527c63c07aa5d2361a8829f3895cf2bd
|
2020-04-08 14:22:25 +00:00
|
|
|
|
toc_priority: 43
|
|
|
|
|
toc_title: jdbc
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# jdbc {#table-function-jdbc}
|
|
|
|
|
|
|
|
|
|
`jdbc(jdbc_connection_uri, schema, table)` -返回通过JDBC驱动程序连接的表。
|
|
|
|
|
|
|
|
|
|
此表函数需要单独的 `clickhouse-jdbc-bridge` 程序正在运行。
|
|
|
|
|
它支持可空类型(基于查询的远程表的DDL)。
|
|
|
|
|
|
|
|
|
|
**例**
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT * FROM jdbc('jdbc:mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT * FROM jdbc('datasource://mysql-local', 'schema', 'table')
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
[原始文章](https://clickhouse.tech/docs/en/query_language/table_functions/jdbc/) <!--hide-->
|