Skip to content

Commit a9c14ad

Browse files
authored
Merge pull request #3037 from klaudiagrz/patch-1
Fix a typo in code snippet
2 parents 6990c5f + d62443c commit a9c14ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: knowledgebase/mysql-to-parquet-csv-json.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To go from MySQL to JSON, just change the extension on the filename to `jsonl` o
7171

7272
```bash
7373
./clickhouse local -q "SELECT * FROM
74-
mysqlql(
74+
mysql(
7575
'localhost:3306',
7676
'my_sql_database',
7777
'my_sql_table',
@@ -81,4 +81,4 @@ To go from MySQL to JSON, just change the extension on the filename to `jsonl` o
8181
INTO OUTFILE 'my_output_file.ndjson'"
8282
```
8383

84-
It's impressive how simple yet powerful the `clickhouse-local` tool really is. You can easily read data from a database like MySQL and output it into [all types of different output formats](https://clickhouse.com/docs/en/sql-reference/formats/).
84+
It's impressive how simple yet powerful the `clickhouse-local` tool really is. You can easily read data from a database like MySQL and output it into [all types of different output formats](https://clickhouse.com/docs/en/sql-reference/formats/).

0 commit comments

Comments
 (0)