We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b8ce9 commit 1d44e99Copy full SHA for 1d44e99
README.md
@@ -26,12 +26,12 @@ since it compiles to SQL.
26
PRQL can be as simple as:
27
28
```elm
29
-from employees
30
-filter country == "USA" # Each line transforms the previous result
+from tracks
+filter artist == "Bob Marley" # Each line transforms the previous result
31
aggregate { # `aggregate` reduces each column to a value
32
- max salary,
33
- min salary,
34
- count s"*", # Trailing commas are allowed
+ plays = sum plays,
+ longest = max length,
+ shortest = min length, # Trailing commas are allowed
35
}
36
```
37
0 commit comments