MySQL Forums
Forum List  »  General

Decode json in query
Posted by: Sukhjinder Narula
Date: March 20, 2014 08:33AM

Hello,

I would like to know if there is a way to decode the json string stored in one of the fields as text without using triggers or stored procedures.

What I want to do is is within the query, I would like to get one row per element within the json string.

For example: the json string is as follow:

[
{
"name" : "Abc",
"age" : "20"
},
{
"name" : "Xyz",
"age" : "18"
}
]

and after query, I want result as:

Name Age
Abc 20
Xyz 18

Would this be possible, I greatly appreciate any help regarding this matter.

Many Thanks,
Sukhjinder

Options: ReplyQuote


Subject
Written By
Posted
Decode json in query
March 20, 2014 08:33AM
March 21, 2014 04:48PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.