mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
d91c97d15d
* Replace underscores with hyphens * remove temporary code * fix style check * fix collapse
865 B
865 B
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | f865c9653f |
43 | jdbc |
jdbc
jdbc(jdbc_connection_uri, schema, table)
- retourne la table qui est connectée via le pilote JDBC.
Ce tableau fonction nécessite séparé clickhouse-jdbc-bridge
programme en cours d’exécution.
Il prend en charge les types Nullable (basé sur DDL de la table distante qui est interrogée).
Exemple
SELECT * FROM jdbc('jdbc:mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
SELECT * FROM jdbc('mysql://localhost:3306/?user=root&password=root', 'schema', 'table')
SELECT * FROM jdbc('datasource://mysql-local', 'schema', 'table')