Skip to content

Commit 987a105

Browse files
prql-boteitsupi
andauthored
chore: Backport #4862 to web (#4865)
Co-authored-by: eitsupi <50911393+eitsupi@users.noreply.github.com>
1 parent 0a411de commit 987a105

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed
Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
# DuckDB
22

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.
66

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.

0 commit comments

Comments
 (0)