Skip to content

Commit

Permalink
chore: Backport #3626 to web (#3629)
Browse files Browse the repository at this point in the history
Co-authored-by: eitsupi <[email protected]>
  • Loading branch information
prql-bot and eitsupi authored Oct 8, 2023
1 parent 4ae640c commit 8e7676f
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 8e7676f

Please sign in to comment.