How to extract an item from an array in a JSON object in MySQL
- 2 minutes read - 371 wordsTo extract an item from an array in MySQL you need to use the ->
operator and the [item_number]
JSON Path Syntax.
NOTE: more info is available in the MySQL JSON functions documentation page
👉 Want a FREE MySQL database?👈
🦀 Check Aiven’s FREE plans! 🦀
⚡️ Want to optimize your SQL query with AI? ⚡️
Check Aiven SQL Query Optimizer!
⚡️ Want a Fully MySQL optimized Database? ⚡️
🐧 Check Aiven AI database optimizer! Powered by EverSQL 🐧
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
: 778shop
: “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
pizzas
item:
[
{
"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": ["🍌", "🌶️", "🍍"]
}
]
}');
Extract an item from a JSON array with the ->
operator
Using the ->
operator in conjunction with the [item_number]
JSON Path sintax, we can extract from an array. The [item_number]
syntax follows the JSON standards, therefore the array starting index is 0
. The second pizza in the order can be extracted with
select
json_data -> '$.pizzas[1]' second_pizza
from test;
In the above query
json_data -> '$.pizzas'
extracts thepizzas
field- the additional
[1]
extracts the second pizza (index starts from0
)
Result
+--------------------------------------------------------------------------------+
| second_pizza |
+--------------------------------------------------------------------------------+
| {"pizzaName": "Margherita", "additionalToppings": ["🍌", "🌶️", "🍍"]} |
+--------------------------------------------------------------------------------+
Review all the JSON MySQL use-cases listed in the main page