Skip to content

Commit

Permalink
docs: Update from docs (#3292)
Browse files Browse the repository at this point in the history
(cherry picked from commit 188af55)
  • Loading branch information
FinnRG authored and github-actions[bot] committed Aug 9, 2023
1 parent 2c54b8d commit 22d419f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions web/book/src/reference/stdlib/transforms/from.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ from table_reference

Table names containing schemas, keywords, or special characters
[need to be contained within backticks](../../syntax/keywords.md#quoting).
`default_db.tablename` can be used if the table name matches a function from the
standard library.

```prql
default_db.group
take 1
```

## Examples

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
source: web/book/tests/documentation/book.rs
expression: "default_db.group\ntake 1\n"
---
SELECT
*
FROM
"group"
LIMIT
1

0 comments on commit 22d419f

Please sign in to comment.