slug: /zh/sql-reference/table-functions/jdbc sidebar_position: 43

sidebar_label: jdbc

jdbc {#table-function-jdbc}

jdbc(datasource, schema, table) -返回通过JDBC驱动程序连接的表。

此表函数需要单独的 clickhouse-jdbc-bridge 程序才能运行。 它支持可空类型(基于查询的远程表的DDL)。

示例

  1. SELECT * FROM jdbc('jdbc:mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
  1. SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'select * from schema.table')
  1. SELECT * FROM jdbc('mysql-dev?p1=233', 'num Int32', 'select toInt32OrZero(''{{p1}}'') as num')
  1. SELECT *
  2. FROM jdbc('mysql-dev?p1=233', 'num Int32', 'select toInt32OrZero(''{{p1}}'') as num')
  1. SELECT a.datasource AS server1, b.datasource AS server2, b.name AS db
  2. FROM jdbc('mysql-dev?datasource_column', 'show databases') a
  3. INNER JOIN jdbc('self?datasource_column', 'show databases') b ON a.Database = b.name

原始文章