Skip to content

Commit

Permalink
docs(book): update syntax of tuple and formatting (#3626)
Browse files Browse the repository at this point in the history
(cherry picked from commit 60d93e0)
  • Loading branch information
eitsupi authored and github-actions[bot] committed Oct 8, 2023
1 parent 4ae640c commit fae6c0f
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit fae6c0f

Please sign in to comment.