File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed
web/book/src/project/integrations Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# DuckDB
2
2
3
- There's an experimental [ DuckDB] ( https://duckdb.org/ ) extension from
4
- ** [ @ywelsch ] ( https://github.com/ywelsch ) ** at
5
- [ ywelsch/duckdb-prql ] ( https://github.com/ywelsch/duckdb-prql ) .
3
+ There's a [ DuckDB] ( https://duckdb.org/ ) community extension by
4
+ ** [ @ywelsch ] ( https://github.com/ywelsch ) ** at the DuckDB Community Extension
5
+ Repository .
6
6
7
- Check out the Readme for more details.
7
+ ``` sql
8
+ INSTALL prql FROM community;
9
+ LOAD prql;
10
+ -- Once the extension is loaded, you can write PRQL queries
11
+ from (read_csv ' https://raw.githubusercontent.com/PRQL/prql/0.8.0/prql-compiler/tests/integration/data/chinook/invoices.csv' )
12
+ filter invoice_date >= @2009 - 02 - 01
13
+ take 5 ;
14
+ ```
15
+
16
+ Check out the
17
+ [ extension's documentation] ( https://community-extensions.duckdb.org/extensions/prql.html )
18
+ for more details.
You can’t perform that action at this time.
0 commit comments