-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from vanillajonathan/patch-1
Add prqlc examples
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# prqlc | ||
|
||
run the compiler interactively | ||
|
||
prqlc compile | ||
|
||
|
||
compile a .prql file standard output | ||
|
||
prqlc compile file.prql | ||
|
||
|
||
compile a .prql file to a .sql file | ||
|
||
prqlc compile source.prql target.sql | ||
|
||
|
||
compile a query | ||
|
||
echo "from employees | filter has_dog | select salary" | prqlc compile | ||
|
||
|
||
watch a directory and compile on file modification | ||
|
||
prqlc watch path/to/directory | ||
|
||
|