Hyper supports the SQL:2016 functions for constructing JSON values from SQL data. Use JSON functions to:
Build JSON arrays from a list of values.
Build JSON objects from key-value pairs.
Convert any scalar value to its JSON representation.
Parse and embed pre-formatted JSON documents.
Construction
Build JSON values from SQL data:
[json](./json-constructor.md) - Parse a string into a JSON value.
[json_array](./json-array.md) - Build a JSON array from a list of values.
[json_object](./json-object.md) - Build a JSON object from key-value pairs.
[json_scalar](./json-scalar.md) - Convert any scalar value to JSON.
Considerations
Strings passed as arguments are escaped and become JSON string values. To embed a value as raw JSON instead, pass a json-typed value or use the FORMAT JSON modifier.
The RETURNING clause and the WITH UNIQUE KEYS option from the SQL:2016 standard aren’t supported.
Examples
Build a Nested Customer Summary
Combine json_object and json_array to build a nested document from table columns.