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
8
9
from invoices
select { customer_id, invoice_id, billing_country }
take 10..15
append (
  from invoices
  select { customer_id, invoice_id, billing_country }
  take 40..45
)
select { billing_country, invoice_id }