mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
d91c97d15d
* Replace underscores with hyphens * remove temporary code * fix style check * fix collapse
852 B
852 B
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | 3e185d24c9 |
43 | jdbc |
jdbc
jdbc(jdbc_connection_uri, schema, table)
- devuelve la tabla que está conectado a través del controlador JDBC.
Esta función de tabla requiere clickhouse-jdbc-bridge
programa para estar en ejecución.
Admite tipos Nullable (basados en DDL de la tabla remota que se consulta).
Ejemplos
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')