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
from invoices
select {an_id = invoice_id, name = null}
take 2
append (
  from employees
  select {an_id = null, name = first_name}
  take 2
)