Rechercher dans le manuel MySQL
12.17.5 Functions That Return JSON Value Attributes
The functions in this section return attributes of JSON values.
Returns the maximum depth of a JSON document. Returns
NULL
if the argument isNULL
. An error occurs if the argument is not a valid JSON document.An empty array, empty object, or scalar value has depth 1. A nonempty array containing only elements of depth 1 or nonempty object containing only member values of depth 1 has depth 2. Otherwise, a JSON document has depth greater than 2.
- +------------------+------------------+--------------------+
- | JSON_DEPTH('{}') | JSON_DEPTH('[]') | JSON_DEPTH('true') |
- +------------------+------------------+--------------------+
- | 1 | 1 | 1 |
- +------------------+------------------+--------------------+
- +------------------------+------------------------+
- | JSON_DEPTH('[10, 20]') | JSON_DEPTH('[[], {}]') |
- +------------------------+------------------------+
- | 2 | 2 |
- +------------------------+------------------------+
- +-------------------------------+
- | JSON_DEPTH('[10, {"a": 20}]') |
- +-------------------------------+
- | 3 |
- +-------------------------------+
Returns the length of a JSON document, or, if a
path
argument is given, the length of the value within the document identified by the path. ReturnsNULL
if any argument isNULL
or thepath
argument does not identify a value in the document. An error occurs if thejson_doc
argument is not a valid JSON document or thepath
argument is not a valid path expression or contains a*
or**
wildcard.The length of a document is determined as follows:
The length of a scalar is 1.
The length of an array is the number of array elements.
The length of an object is the number of object members.
The length does not count the length of nested arrays or objects.
- +---------------------------------+
- | JSON_LENGTH('[1, 2, {"a": 3}]') |
- +---------------------------------+
- | 3 |
- +---------------------------------+
- +-----------------------------------------+
- | JSON_LENGTH('{"a": 1, "b": {"c": 30}}') |
- +-----------------------------------------+
- | 2 |
- +-----------------------------------------+
- +------------------------------------------------+
- | JSON_LENGTH('{"a": 1, "b": {"c": 30}}', '$.b') |
- +------------------------------------------------+
- | 1 |
- +------------------------------------------------+
Returns a
utf8mb4
string indicating the type of a JSON value. This can be an object, an array, or a scalar type, as shown here:- +---------------+
- | JSON_TYPE(@j) |
- +---------------+
- | OBJECT |
- +---------------+
- +------------------------------------+
- | JSON_TYPE(JSON_EXTRACT(@j, '$.a')) |
- +------------------------------------+
- | ARRAY |
- +------------------------------------+
- +---------------------------------------+
- | JSON_TYPE(JSON_EXTRACT(@j, '$.a[0]')) |
- +---------------------------------------+
- +---------------------------------------+
- +---------------------------------------+
- | JSON_TYPE(JSON_EXTRACT(@j, '$.a[1]')) |
- +---------------------------------------+
- +---------------------------------------+
JSON_TYPE()
returnsNULL
if the argument isNULL
:- +-----------------+
- +-----------------+
- +-----------------+
An error occurs if the argument is not a valid JSON value:
For a non-
NULL
, non-error result, the following list describes the possibleJSON_TYPE()
return values:Purely JSON types:
OBJECT
: JSON objectsARRAY
: JSON arraysBOOLEAN
: The JSON true and false literalsNULL
: The JSON null literal
Numeric types:
Temporal types:
String types:
Binary types:
All other types:
OPAQUE
(raw bits)
Returns 0 or 1 to indicate whether a value is valid JSON. Returns
NULL
if the argument isNULL
.- +------------------------+
- | JSON_VALID('{"a": 1}') |
- +------------------------+
- | 1 |
- +------------------------+
- +---------------------+-----------------------+
- | JSON_VALID('hello') | JSON_VALID('"hello"') |
- +---------------------+-----------------------+
- | 0 | 1 |
- +---------------------+-----------------------+
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-json-attribute-functions.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.