json_string
Converting JSON object to JSON string
tip
All of the JSON functions and operators are listed in the navigation and on the overview page
Accelerate your queries with generated columns
Syntaxβ
json_string(json_object_expr)
Parametersβ
json_object_expr
: the expression that represents the JSON object. The object can be a JSON column, or a JSON object that is produced by a JSON constructor function such as PARSE_JSON.
Return valueβ
Returns a VARCHAR value.
Examplesβ
Example 1: Converting the JSON object to a JSON string
select json_string('{"Name": "Alice"}');
+----------------------------------+
| json_string('{"Name": "Alice"}') |
+----------------------------------+
| {"Name": "Alice"} |
+----------------------------------+
Example 1: Convert the result of PARSE_JSON to a JSON string
select json_string(parse_json('{"Name": "Alice"}'));
+----------------------------------+
| json_string('{"Name": "Alice"}') |
+----------------------------------+
| {"Name": "Alice"} |
+----------------------------------+