Skip to content
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions book/src/super-sql/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ The language is a superset of SQL query syntax and includes
a modern [type system](types/intro.md) with [sum types](types/union.md) to represent
heterogeneous data.

Similar to a Unix pipeline, a SuperSQL query is expressed as a data source followed
by a number of [operators](operators/intro.md) that manipulate the data:
Similar to a Unix pipeline, a SuperSQL [query](queries.md)
is expressed as a data source followed by a number of
[operators](operators/intro.md) that manipulate the data:
```
from source | operator | operator | ...
```
Expand Down