prqlc 0.13.11

PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement.
Documentation
1
2
3
4
5
6
7
from invoices
select { invoice_id, billing_country }
append (
  from invoices
  select { invoice_id = `invoice_id` + 100, billing_country }
)
filter (billing_country | text.starts_with("I"))