Skip to content

Commit d62443c

Browse files
authored
Fix a typo in code snippet
The code snippet in `mysql-to-parquet-csv-json.md` seems to contain a typo. This PR fixes it.
1 parent b909267 commit d62443c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

knowledgebase/mysql-to-parquet-csv-json.md

Lines changed: 2 additions & 2 deletions
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)