Overview of JSON functions and operators
Overview of JSON functions and operators
This topic provides an overview of the JSON constructor functions, query functions, and processing functions, operators, and path expressions that are supported by StarRocks.
JSON constructor functions
JSON constructor functions are used to construct JSON data, such as JSON objects and JSON arrays.
Function | Description | Example | Return value |
---|---|---|---|
Converts one or more key-value pairs to a JSON object that consists of the key-value pairs, which are sorted by key in dictionary order. |
|
| |
Converts each element of an SQL array to a JSON value and returns a JSON array that consists of those JSON values. |
|
| |
Converts a string to a JSON value. |
|
|
JSON query functions and processing functions
JSON query functions and processing functions are used to query and process JSON data. For example, you can use a path expression to locate an element in a JSON object.
Function | Description | Example | Return value |
---|---|---|---|
Queries the element that can be located by a path expression in a JSON object. |
|
| |
Converts data between a JSON data type and an SQL data type. |
|
| |
Analyzes and gets the floating point value from a specified path in a JSON string. |
|
| |
Analyzes and gets the integer value from a specified path in a JSON string. |
|
| |
Analyzes and gets the strings from a specified path in a JSON string. |
|
| |
Queries the value of an element that can be located by a path expression in a JSON object. |
|
| |
Expands the top-level elements of a JSON object into key-value pairs. |
| ||
Checks whether a JSON object contains an element that can be located by a path expression. If the element exists, this function returns 1. If the element does not exist, the function returns 0. |
|
| |
Returns the top-level keys from a JSON object as a JSON array, or, if a path is specified, the top-level keys from the path. |
|
| |
Returns the length of a JSON document. |
|
| |
Converts the JSON object to a JSON string |
|
|
JSON operators
StarRocks supports the following JSON comparison operators: <
, <=
, >
, >=
, =
, and !=
. You can use these operators to query JSON data. However, it does not allow you to use IN
to query JSON data. For more information about JSON operators, see JSON operators.
JSON path expressions
You can use a JSON path expression to query an element in a JSON object. JSON path expressions are of the STRING data type. In most cases, they are used with various JSON functions, such as JSON_QUERY. In StarRocks, JSON path expressions do not completely comply with the SQL/JSON path specifications. For information about the JSON path syntax that is supported in StarRocks, see the following table, in which the following JSON object is used as an example.
{
"people": [{
"name": "Daniel",
"surname": "Smith"
}, {
"name": "Lily",
"surname": "Smith",
"active": true
}]
}
JSON path symbol | Description | JSON path example | Return value |
---|---|---|---|
| Denotes a root JSON object. |
|
|
| Denotes a child JSON object. |
|
|
| Denotes one or more array indexes. StarRocks 2.5 supports querying multi-dimensional arrays, for example, |
|
|
| Denotes all elements in an array. |
|
|
| Denotes a subset of elements from an array. The subset is specified by the |
|
|