Skip to content

Commit

Permalink
chore: Backport #4862 to web (#4865)
Browse files Browse the repository at this point in the history
Co-authored-by: eitsupi <[email protected]>
  • Loading branch information
prql-bot and eitsupi authored Sep 1, 2024
1 parent 0a411de commit 987a105
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions web/book/src/project/integrations/duckdb.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# DuckDB

There's an experimental [DuckDB](https://duckdb.org/) extension from
**[@ywelsch](https://github.com/ywelsch)** at
[ywelsch/duckdb-prql](https://github.com/ywelsch/duckdb-prql).
There's a [DuckDB](https://duckdb.org/) community extension by
**[@ywelsch](https://github.com/ywelsch)** at the DuckDB Community Extension
Repository.

Check out the Readme for more details.
```sql
INSTALL prql FROM community;
LOAD prql;
-- Once the extension is loaded, you can write PRQL queries
from (read_csv 'https://raw.githubusercontent.com/PRQL/prql/0.8.0/prql-compiler/tests/integration/data/chinook/invoices.csv')
filter invoice_date >= @2009-02-01
take 5;
```

Check out the
[extension's documentation](https://community-extensions.duckdb.org/extensions/prql.html)
for more details.

0 comments on commit 987a105

Please sign in to comment.