JSON_LENGTH

You are viewing an old version of this article. View the current version here.
MariaDB starting with 10.2.3

JSON functions were added in MariaDB 10.2.3.

Syntax

JSON_LENGTH(json_doc[, path])

Description

Returns the length of JSON document, or, if the optional path argument is given, the length of the value within the document specfied 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:

  • A scalar's length is always 1.
  • If an array, the number of elements in the array.
  • If an object, the number of members in the object.

The length of nested arrays or objects are not counted.

Examples


    

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.