Skip to content

Commit

Permalink
Fix query
Browse files Browse the repository at this point in the history
  • Loading branch information
Mytherin committed Sep 9, 2024
1 parent 2deeea6 commit 3f2099f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-09-09-announcing-duckdb-110.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ This release adds a *very cool* optimization for joins: DuckDB now [automaticall

```sql
CREATE TABLE A AS SELECT range i, range j FROM range(100);
CREATE TABLE B AS SELECT a.range FROM range(100) a, range(10_000) b;
CREATE TABLE B AS SELECT a.range i FROM range(100) a, range(10_000) b;
SELECT count(*) FROM A JOIN B USING (i) WHERE j > 90;
```

Expand Down

0 comments on commit 3f2099f

Please sign in to comment.