未验证 提交 0e4258f7 编写于 作者: A alexey-milovidov 提交者: GitHub

Update jdbc.md

上级 512dea74
......@@ -54,12 +54,14 @@ mysql> select * from test;
Creating a table in ClickHouse server and selecting data from it:
```sql
CREATE TABLE jdbc_table(
CREATE TABLE jdbc_table
(
`int_id` Int32,
`int_nullable` Nullable(Int32),
`float` Float32,
`float_nullable` Nullable(Float32)
)ENGINE JDBC('jdbc:mysql://localhost:3306/?user=root&password=root', 'test', 'test')
)
ENGINE JDBC('jdbc:mysql://localhost:3306/?user=root&password=root', 'test', 'test')
```
```sql
SELECT *
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册