Rechercher dans le manuel MySQL
12.17.8 JSON Utility Functions
This section documents utility functions that act on JSON values,
or strings that can be parsed as JSON values.
JSON_PRETTY()
prints out a JSON
value in a format that is easy to read.
JSON_STORAGE_SIZE()
and
JSON_STORAGE_FREE()
show,
respectively, the amount of storage space used by a given JSON
value and the amount of space remaining in a
JSON
column following a partial update.
Provides pretty-printing of JSON values similar to that implemented in PHP and by other languages and database systems. The value supplied must be a JSON value or a valid string representation of a JSON value. Extraneous whitespaces and newlines present in this value have no effect on the output. For a
NULL
value, the function returnsNULL
. If the value is not a JSON document, or if it cannot be parsed as one, the function fails with an error.Formatting of the output from this function adheres to the following rules:
Each array element or object member appears on a separate line, indented by one additional level as compared to its parent.
Each level of indentation adds two leading spaces.
A comma separating individual array elements or object members is printed before the newline that separates the two elements or members.
The key and the value of an object member are separated by a colon followed by a space ('
:
').An empty object or array is printed on a single line. No space is printed between the opening and closing brace.
Special characters in string scalars and key names are escaped employing the same rules used by the
JSON_QUOTE()
function.
- +--------------------+
- | JSON_PRETTY('123') |
- +--------------------+
- | 123 |
- +--------------------+
- +------------------------+
- | JSON_PRETTY("[1,3,5]") |
- +------------------------+
- | [
- 1,
- 3,
- 5
- ] |
- +------------------------+
- +---------------------------------------------+
- | JSON_PRETTY('{"a":"10","b":"15","x":"25"}') |
- +---------------------------------------------+
- | {
- "a": "10",
- "b": "15",
- "x": "25"
- } |
- +---------------------------------------------+
- '> "value1"},"5", "77" ,
- '> {"key2":["value3","valueX",
- '> "valueY"]},"j", "2" ]')\G # nested arrays and objects
- *************************** 1. row ***************************
- JSON_PRETTY('["a",1,{"key1":
- "value1"},"5", "77" ,
- {"key2":["value3","valuex",
- "valuey"]},"j", "2" ]'): [
- "a",
- 1,
- {
- "key1": "value1"
- },
- "5",
- "77",
- {
- "key2": [
- "value3",
- "valuex",
- "valuey"
- ]
- },
- "j",
- "2"
- ]
For a
JSON
column value, this function shows how much storage space was freed in its binary representation after it was updated in place usingJSON_SET()
,JSON_REPLACE()
, orJSON_REMOVE()
. The argument can also be a valid JSON document or a string which can be parsed as one—either as a literal value or as the value of a user variable—in which case the function returns 0. It returns a positive, nonzero value if the argument is aJSON
column value which has been updated as described previously, such that its binary representation takes up less space than it did prior to the update. For aJSON
column which has been updated such that its binary representation is the same as or larger than before, or if the update was not able to take advantage of a partial update, it returns 0; it returnsNULL
if the argument isNULL
.If
json_val
is notNULL
, and neither is a valid JSON document nor can be successfully parsed as one, an error results.In this example, we create a table containing a
JSON
column, then insert a row containing a JSON object:- Query OK, 0 rows affected (0.38 sec)
- -> ('{"a": 10, "b": "wxyz", "c": "[true, false]"}');
- Query OK, 1 row affected (0.04 sec)
- +----------------------------------------------+
- | jcol |
- +----------------------------------------------+
- | {"a": 10, "b": "wxyz", "c": "[true, false]"} |
- +----------------------------------------------+
Now we update the column value using
JSON_SET()
such that a partial update can be performed; in this case, we replace the value pointed to by thec
key (the array[true, false]
) with one that takes up less space (the integer1
):- mysql> UPDATE jtable
- Query OK, 1 row affected (0.03 sec)
- +--------------------------------+
- | jcol |
- +--------------------------------+
- | {"a": 10, "b": "wxyz", "c": 1} |
- +--------------------------------+
- +-------------------------+
- | JSON_STORAGE_FREE(jcol) |
- +-------------------------+
- | 14 |
- +-------------------------+
The effects of successive partial updates on this free space are cumulative, as shown in this example using
JSON_SET()
to reduce the space taken up by the value having keyb
(and making no other changes):- mysql> UPDATE jtable
- Query OK, 1 row affected (0.03 sec)
- +-------------------------+
- | JSON_STORAGE_FREE(jcol) |
- +-------------------------+
- | 16 |
- +-------------------------+
Updating the column without using
JSON_SET()
,JSON_REPLACE()
, orJSON_REMOVE()
means that the optimizer cannot perform the update in place; in this case,JSON_STORAGE_FREE()
returns 0, as shown here:- Query OK, 1 row affected (0.05 sec)
- +-------------------------+
- | JSON_STORAGE_FREE(jcol) |
- +-------------------------+
- | 0 |
- +-------------------------+
Partial updates of JSON documents can be performed only on column values. For a user variable that stores a JSON value, the value is always completely replaced, even when the update is performed using
JSON_SET()
:- Query OK, 0 rows affected (0.00 sec)
- Query OK, 0 rows affected (0.00 sec)
- +----------------------------------+------+
- | @j | Free |
- +----------------------------------+------+
- | {"a": 10, "b": "wxyz", "c": "1"} | 0 |
- +----------------------------------+------+
For a JSON literal, this function always returns 0:
This function returns the number of bytes used to store the binary representation of a JSON document. When the argument is a
JSON
column, this is the space used to store the JSON document as it was inserted into the column, prior to any partial updates that may have been performed on it afterwards.json_val
must be a valid JSON document or a string which can be parsed as one. In the case where it is string, the function returns the amount of storage space in the JSON binary representation that is created by parsing the string as JSON and converting it to binary. It returnsNULL
if the argument isNULL
.An error results when
json_val
is notNULL
, and is not—or cannot be successfully parsed as—a JSON document.To illustrate this function's behavior when used with a
JSON
column as its argument, we create a table namedjtable
containing aJSON
columnjcol
, insert a JSON value into the table, then obtain the storage space used by this column withJSON_STORAGE_SIZE()
, as shown here:- Query OK, 0 rows affected (0.42 sec)
- -> ('{"a": 1000, "b": "wxyz", "c": "[1, 3, 5, 7]"}');
- Query OK, 1 row affected (0.04 sec)
- mysql> SELECT
- -> jcol,
- +-----------------------------------------------+------+------+
- | jcol | Size | Free |
- +-----------------------------------------------+------+------+
- | {"a": 1000, "b": "wxyz", "c": "[1, 3, 5, 7]"} | 47 | 0 |
- +-----------------------------------------------+------+------+
According to the output of
JSON_STORAGE_SIZE()
, the JSON document inserted into the column takes up 47 bytes. We also checked the amount of space freed by any previous partial updates of the column usingJSON_STORAGE_FREE()
; since no updates have yet been performed, this is 0, as expected.Next we perform an
UPDATE
on the table that should result in a partial update of the document stored injcol
, and then test the result as shown here:- -> JSON_SET(jcol, "$.b", "a");
- Query OK, 1 row affected (0.04 sec)
- mysql> SELECT
- -> jcol,
- +--------------------------------------------+------+------+
- | jcol | Size | Free |
- +--------------------------------------------+------+------+
- | {"a": 1000, "b": "a", "c": "[1, 3, 5, 7]"} | 47 | 3 |
- +--------------------------------------------+------+------+
The value returned by
JSON_STORAGE_FREE()
in the previous query indicates that a partial update of the JSON document was performed, and that this freed 3 bytes of space used to store it. The result returned byJSON_STORAGE_SIZE()
is unchanged by the partial update.Partial updates are supported for updates using
JSON_SET()
,JSON_REPLACE()
, orJSON_REMOVE()
. The direct assignment of a value to aJSON
column cannot be partially updated; following such an update,JSON_STORAGE_SIZE()
always shows the storage used for the newly-set value:- mysql> UPDATE jtable
- Query OK, 1 row affected (0.04 sec)
- mysql> SELECT
- -> jcol,
- +------------------------------------------------+------+------+
- | jcol | Size | Free |
- +------------------------------------------------+------+------+
- | {"a": 4.55, "b": "wxyz", "c": "[true, false]"} | 56 | 0 |
- +------------------------------------------------+------+------+
A JSON user variable cannot be partially updated. This means that this function always shows the space currently used to store a JSON document in a user variable:
- Query OK, 0 rows affected (0.00 sec)
- +------------------------------------+------+
- | @j | Size |
- +------------------------------------+------+
- | [100, "sakila", [1, 3, 5], 425.05] | 45 |
- +------------------------------------+------+
- Query OK, 0 rows affected (0.00 sec)
- +----------------------------------+------+
- | @j | Size |
- +----------------------------------+------+
- | [100, "json", [1, 3, 5], 425.05] | 43 |
- +----------------------------------+------+
- Query OK, 0 rows affected (0.00 sec)
- +---------------------------------------------+------+
- | @j | Size |
- +---------------------------------------------+------+
- | [100, "json", [[10, 20, 30], 3, 5], 425.05] | 56 |
- +---------------------------------------------+------+
For a JSON literal, this function always returns the current storage space used:
- mysql> SELECT
- +----+----+----+----+
- | A | B | C | D |
- +----+----+----+----+
- | 45 | 44 | 47 | 56 |
- +----+----+----+----+
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-utility-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.