How to insert a field in a JSON document in MySQL
- 2 minutes read - 342 wordsYou can insert a field in a JSON document in MySQL with the JSON_INSERT function.
NOTE: more info is available in the MySQL JSON functions documentation page
The dataset
The dataset is the following:
{
    "id": 778,
    "shop": "Luigis Pizza",
    "name": "Edward Olson",
    "phoneNumbers":
        ["(935)503-3765x4154","(935)12345"],
    "address": "Unit 9398 Box 2056 DPO AP 24022",
    "image": null,
    "pizzas": [
        {
            "pizzaName": "Salami",
            "additionalToppings": ["🥓", "🌶️"]
        },
        {
            "pizzaName": "Margherita",
            "additionalToppings": ["🍌", "🌶️", "🍍"]
        }
    ]
}
Check out the description of the fields
The following examples use a pizza order dataset with an order having:- id: 778
- shop: “Luigis Pizza”
- name: “Edward Olson”
- phoneNumbers:["(935)503-3765x4154","(935)12345"]
- address: “Unit 9398 Box 2056 DPO AP 24022”
- image: null
- and two pizzas contained in the pizzasitem:
[
    {
        "pizzaName": "Salami",
        "additionalToppings": ["🥓", "🌶️"]
    },
    {
        "pizzaName": "Margherita",
        "additionalToppings": ["🍌", "🌶️", "🍍"]
    }
]
If you want to reproduce the examples, check how to recreate the dataset
It can be recreated with the following script:
create table test(id serial primary key, json_data json);
insert into test(json_data) values (
'{
    "id": 778,
    "shop": "Luigis Pizza",
    "name": "Edward Olson",
    "phoneNumbers":
        ["(935)503-3765x4154","(935)12345"],
    "address": "Unit 9398 Box 2056 DPO AP 24022",
    "image": null,
    "pizzas": [
        {
            "pizzaName": "Salami",
            "additionalToppings": ["🥓", "🌶️"]
        },
        {
            "pizzaName": "Margherita",
            "additionalToppings": ["🍌", "🌶️", "🍍"]
        }
    ]
}');
Insert a field in a JSON document with JSON_INSERT function
To insert a field in a JSON document you can use the JSON_INSERT function. To insert the drinks in the second pizza in the above order you can:
select 
    JSON_INSERT(json_data,'$.pizzas[1].drinks','Sparkling Water') extra_drink from test;
Where
- json_datais the JSON column
- $.pizzas[1].drinkselects the- pizzasitem, the 2nd element in the array and the- drinksubitem
- the last parameter Sparkling Waterrepresents the value to replace
Result
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| extra_drink                                                                                                                                                                                                                                                                                                                                                                 |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| {"id": 778, "name": "Edward Olson", "shop": "Luigis Pizza", "image": null, "pizzas": [{"pizzaName": "Salami", "additionalToppings": ["🥓", "🌶️"]}, {"drinks": "Sparkling Water", "pizzaName": "Margherita", "additionalToppings": ["🍌", "🌶️", "🍍"]}], "address": "Unit 9398 Box 2056 DPO AP 24022", "phoneNumbers": ["(935)503-3765x4154", "(935)12345"]}                         |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Review all the JSON MySQL use-cases listed in the main page