Skip to content

Commit 3b854d1

Browse files
zafikratguilload
authored andcommitted
Add documentation for json_array_elements_text function (#32187)
1 parent a776700 commit 3b854d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

content/en/ddsql_reference/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,7 @@ This table provides an overview of the supported window functions. For comprehen
724724
| json_extract_path_text(text json, text path…) | text | Extracts a JSON sub-object as text, defined by the path. Its behavior is equivalent to the [Postgres function with the same name][3]. For example, `json_extract_path_text(col, ‘forest')` returns the value of the key `forest` for each JSON object in `col`. See the example below for a JSON array syntax. |
725725
| json_extract_path(text json, text path…) | JSON | Same functionality as `json_extract_path_text`, but returns a column of JSON type instead of text type. |
726726
| json_array_elements(text json) | rows of JSON | Expands a JSON array into a set of rows. This form is only allowed in a FROM clause. |
727+
| json_array_elements_text(text json) | rows of text | Expands a JSON array into a set of rows. This form is only allowed in a FROM clause. |
727728

728729
## Table functions
729730

0 commit comments

Comments
 (0)