Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions versioned_docs/version-3.0/lakehouse/catalog-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,11 @@ CREATE CATALOG mysql_catalog properties(
Then, perform a join query between Iceberg tables and MySQL tables using SQL:

```sql
SELECT * FROM FROM
iceberg_catalog.iceberg_db.table1 tbl1 JOIN mysql_catalog.mysql_db.dim_table tbl2
SELECT *
FROM iceberg_catalog.iceberg_db.table1 tbl1
JOIN mysql_catalog.mysql_db.dim_table tbl2
ON tbl1.id = tbl2.id;

```

### Data Import
Expand Down
Loading