Skip to content

Commit 11444a8

Browse files
committed
Update json-map-filter.md
1 parent 07f286f commit 11444a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/en/sql-reference/20-sql-functions/10-semi-structured-functions/json-map-filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Returns a JSON object with only the key-value pairs that satisfy the specified c
1919

2020
## Examples
2121

22-
This example extracts only the `"status": "active"` key-value pair from the JSON object, filtering out the other fields.
22+
This example extracts only the `"status": "active"` key-value pair from the JSON object, filtering out the other fields:
2323

2424
```sql
2525
SELECT JSON_MAP_FILTER('{"status":"active", "user":"admin", "time":"2024-11-01"}'::VARIANT, (k, v) -> k = 'status') AS filtered_metadata;

0 commit comments

Comments
 (0)