Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(book): update syntax of tuple and formatting #3626

Merged
merged 1 commit into from
Oct 8, 2023
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
4 changes: 2 additions & 2 deletions web/book/src/reference/stdlib/transforms/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ select {e.first_name, e.last_name}
We can use `!` to exclude a list of columns. This can operate in two ways:

- We use `SELECT * EXCLUDE` / `SELECT * EXCEPT` for the columns supplied to
`select ![]` in dialects which support it.
`select !{}` in dialects which support it.
- Otherwise, the columns must have been defined prior in the query (unless all
of a table's columns are excluded); for example in another `select` or a
`group` transform. In this case, we evaluate and specify the columns that
Expand All @@ -53,7 +53,7 @@ Some examples:
```prql
prql target:sql.bigquery
from tracks
select !{milliseconds,bytes}
select !{milliseconds, bytes}
```

```prql
Expand Down
Loading