Suppose now i have some table
studentId studentScore ScoreDetail StudentName Phone classId Subject
1 50 (a json value) Doe 911 01 math
the json file is like
{
"DetailList": [
{
"source": "homework",
"count": 30,
"user_id": 1,
"order_id": ": 0
},
{
"source": "homework",
"count": 20,
"user_id": 1,
"order_id": ": 0"
}
],
"TotalScoreCount": 50
}
How do i make it into this
studentId Score ScoreSource StudentName Phone classId Subject
1 30 homework Doe 911 01 math
1 20 homework Doe 911 01 math
...
Let's say i have 10 student