Skip to content

Commit

Permalink
Add note on function chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Nov 30, 2024
1 parent 113d492 commit b48fc2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Empty file added bills.csv
Empty file.
6 changes: 6 additions & 0 deletions docs/sql/functions/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ SELECT goose_name.replace('goose', 'duck') AS duck_name
FROM unnest(['African goose', 'Faroese goose', 'Hungarian goose', 'Pomeranian goose']) breed(goose_name);
```

> Tip To apply function chaining to a single value, use parentheses, e.g.:
>
> ```sql
> SELECT ('hello world').replace(' ', '_');
> ```
## Query Functions
The `duckdb_functions()` table function shows the list of functions currently built into the system.
Expand Down

0 comments on commit b48fc2e

Please sign in to comment.