Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
JSON_ LENGTH
On this page
The JSON_ function computes the length of a JSON map or array.
JSON_LENGTH(json)
Arguments
-
json: a valid JSON array or map.
Return Value
-
the length as an integer.
-
SQL NULL if json is not a valid JSON array or map.
Examples
SELECT JSON_LENGTH('true');
+---------------------+
| JSON_LENGTH('true') |
+---------------------+
| NULL |
+---------------------+SELECT JSON_LENGTH('[1,2,3]');
+------------------------+
| JSON_LENGTH('[1,2,3]') |
+------------------------+
| 3 |
+------------------------+SELECT JSON_LENGTH('{"alpha": 1, "beta": 2}');
+----------------------------------------+
| JSON_LENGTH('{"alpha": 1, "beta": 2}') |
+----------------------------------------+
| 2 |
+----------------------------------------+Note
A JSON or Javascript null value is distinct from SQL NULL.
Last modified: