prqlc 0.8.0

CLI for the PRQL compiler
prqlc-0.8.0 is not a library.
Visit the last successful build: prqlc-0.11.3

prqlc

Installation

prqlc can be installed with cargo:

cargo install prqlc

...or built from source:

cargo install --path prql-compiler/prqlc

Usage

$ echo "from employees | filter has_dog | select salary" | prqlc compile

SELECT
  salary
FROM
  employees
WHERE
  has_dog