JSON functions were added in MariaDB 10.2.3.
JSON_LENGTH(json_doc[, path])
Returns the length of a JSON document, or, if the optional path argument is given, the length of the value within the document specified by the path.
Returns NULL if any of the arguments argument are null or the path argument does not identify a value in the document.
An error will occur if the JSON document is invalid, the path is invalid or if the path contains a *
or **
wildcard.
Length will be determined as follow:
The length of nested arrays or objects are not counted.
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/json_length/