ClickHouse/docs/ja/sql-reference/table-functions/jdbc.md
2021-07-29 18:20:55 +03:00

1.3 KiB

machine_translated machine_translated_rev toc_priority toc_title
true 72537a2d52 43 jdbc

jdbc

jdbc(datasource, schema, table) -JDBCドライバ経由で接続されたテーブルを返します。

このテーブル関数には、別々の clickhouse-jdbc-bridge 実行するプログラム。 Null許容型をサポートします(照会されるリモートテーブルのDDLに基づきます)。

SELECT * FROM jdbc('jdbc:mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'select * from schema.table')
SELECT * FROM jdbc('mysql-dev?p1=233', 'num Int32', 'select toInt32OrZero(''{{p1}}'') as num')
SELECT *
FROM jdbc('mysql-dev?p1=233', 'num Int32', 'select toInt32OrZero(''{{p1}}'') as num')
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

元の記事