Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions prqlc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement.

# Run the compiler interactively:
prql compile
Comment thread
vanillajonathan marked this conversation as resolved.
Outdated

# Compile a .prql file standard output:
prqlc compile file.prql
Comment thread
vanillajonathan marked this conversation as resolved.
Outdated

# Compile a .prql file to a .sql file:
prqlc compile source.prql target.sql
Comment thread
vanillajonathan marked this conversation as resolved.
Outdated

# Compile a query:
echo "from employees | filter has_dog | select salary" | prqlc compile
Comment thread
vanillajonathan marked this conversation as resolved.

# Watch a directory and compile on file modification
prqlc watch path/to/directory