I have a survey-field containing JSON data like this:
{
"reason":
{
"0":"first",
"1":"second",
"other":["on","third"]
},
"comment":"fourth"
}
I want to select the first,second,third and fourth values in SQL.
Thank you.
$result=json_decode($array,true); print_r($result);