Collections:
JSON_CONTAINS_PATH() - Finding Path in JSON
How to verify if a JSON path exists in a JSON (JavaScript Object Notation) value using the JSON_CONTAINS_PATH() function?
✍: FYIcenter.com
JSON_CONTAINS_PATH(json, one_or_all, path1, path2, ...) is a MySQL built-in function that
verifies if one or all specified paths exist in a given JSON value.
For example:
SET @j = '{"a": 1, "b": 2, "c": {"d": 4}}';
SELECT JSON_CONTAINS_PATH(@j, 'one', '$.a', '$.e');
-- +---------------------------------------------+
-- | JSON_CONTAINS_PATH(@j, 'one', '$.a', '$.e') |
-- +---------------------------------------------+
-- | 1 |
-- +---------------------------------------------+
SELECT JSON_CONTAINS_PATH(@j, 'all', '$.a', '$.e');
-- +---------------------------------------------+
-- | JSON_CONTAINS_PATH(@j, 'all', '$.a', '$.e') |
-- +---------------------------------------------+
-- | 0 |
-- +---------------------------------------------+
SELECT JSON_CONTAINS_PATH(@j, 'one', '$.c.d');
-- +----------------------------------------+
-- | JSON_CONTAINS_PATH(@j, 'one', '$.c.d') |
-- +----------------------------------------+
-- | 1 |
-- +----------------------------------------+
SELECT JSON_CONTAINS_PATH(@j, 'one', '$.a.d');
-- +----------------------------------------+
-- | JSON_CONTAINS_PATH(@j, 'one', '$.a.d') |
-- +----------------------------------------+
-- | 0 |
-- +----------------------------------------+
Reference information of the JSON_CONTAINS_PATH() function:
JSON_CONTAINS_PATH(json, one_or_all, path1, path2, ...): int Verifies if one or all specified paths exist in a given JSON value. Arguments, return value and availability: json: Required. The JSON value to be searched in. one_or_all: Required. The search option: "one" or "all". path1, path2, ...: One or more JSON paths to search for. int: Return value. The verification result. Available since MySQL 5.7.
⇒ JSON_DEPTH() - Calculating Depth of JSON Value
⇐ JSON_CONTAINS() - Finding JSON in JSON
2023-12-11, 891🔥, 0💬
Popular Posts:
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...