Skip to main content
Version: Latest-3.2

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.

FunctionDescriptionExampleReturn value
json_objectConverts 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.SELECT JSON_OBJECT('Daniel Smith', 26, 'Lily Smith', 25);{"Daniel Smith": 26, "Lily Smith": 25}
json_arrayConverts each element of an SQL array to a JSON value and returns a JSON array that consists of those JSON values.SELECT JSON_ARRAY(1, 2, 3);[1,2,3]
parse_jsonConverts a string to a JSON value.SELECT PARSE_JSON('{"a": 1}');{"a": 1}

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.

FunctionDescriptionExampleReturn value
arrow functionQueries the element that can be located by a path expression in a JSON object.SELECT parse_json('{"a": {"b": 1}}') -> '$.a.b';1
castConverts data between a JSON data type and an SQL data type.SELECT CAST(1 AS JSON);1
get_json_doubleAnalyzes and gets the floating point value from a specified path in a JSON string.SELECT get_json_double('{"k1":1.3, "k2":"2"}', "$.k1");1.3
get_json_intAnalyzes and gets the integer value from a specified path in a JSON string.SELECT get_json_int('{"k1":1, "k2":"2"}', "$.k1");1
get_json_stringAnalyzes and gets the strings from a specified path in a JSON string.SELECT get_json_string('{"k1":"v1", "k2":"v2"}', "$.k1");v1
json_queryQueries the value of an element that can be located by a path expression in a JSON object.SELECT JSON_QUERY('{"a": 1}', '$.a');1
json_eachExpands the top-level elements of a JSON object into key-value pairs.SELECT * FROM tj_test, LATERAL JSON_EACH(j);!json_each
json_existsChecks 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.SELECT JSON_EXISTS('{"a": 1}', '$.a'); 1
json_keysReturns 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.SELECT JSON_KEYS('{"a": 1, "b": 2, "c": 3}');["a", "b", "c"]
json_lengthReturns the length of a JSON document.SELECT json_length('{"Name": "Alice"}');1
json_stringConverts the JSON object to a JSON stringSELECT json_string(parse_json('{"Name": "Alice"}'));{"Name": "Alice"}

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 symbolDescriptionJSON path exampleReturn value
$Denotes a root JSON object.'$'{ "people": [ { "name": "Daniel", "surname": "Smith" }, { "name": "Lily", "surname": Smith, "active": true } ] }
.Denotes a child JSON object.' $.people'[ { "name": "Daniel", "surname": "Smith" }, { "name": "Lily", "surname": Smith, "active": true } ]
[]Denotes one or more array indexes. [n] denotes the nth element in an array. Indexes start from 0.
StarRocks 2.5 supports querying multi-dimensional arrays, for example, ["Lucy", "Daniel"], ["James", "Smith"]. To query the "Lucy" element, you can use $.people[0][0].
'$.people [0]'{ "name": "Daniel", "surname": "Smith" }
[*]Denotes all elements in an array.'$.people[*].name'["Daniel", "Lily"]
[start: end]Denotes a subset of elements from an array. The subset is specified by the [start, end] interval, which excludes the element that is denoted by the end index.'$.people[0: 1].name'["Daniel"]