So I have written a query that gives the output as an array of JSON objects, one of the objects is below
{ "cardType": "abc", "createdOnDateTime": "2020-03-26", "courseName": "course1", "courseID": 1, "sectionName": 1, "studentList": [ { "name": "student 1", "nameLink": "0" }, { "name": "student 2", "nameLink": "0" }, { "name": "student 3", "nameLink": "0" } ] }
But I want the output as
{ "cardType": "abc", "createdOnDateTime": "2020-03-26", "payload" : { "courseName": "course1", "courseID": 1, "sectionName": 1, "studentList": [ { "name": "student 1", "nameLink": "0" }, { "name": "student 2", "nameLink": "0" }, { "name": "student 3", "nameLink": "0" } ] } }
I have used 'For JSON Auto' phrase at the end of my Select query and as the course and student has a One-to-many relation, the student gets formatted in an array. What I want is that few nodes along with the "studentList" node array should be nested under a custom node 'payload'. How can this be achieved in SQL query using the For JSON and it's related properties?
Totally guessing here on what your data and query looks like based on what little you've given us so far. Use a subquery for studentList with
for json auto
then, on your outer query usefor json path, without_array_wrapper
.When using
for json path
you can nest elements inside each other by giving them dot-separated paths, i.e.: separating parent elements from children with period (.) characters, such as the following...Which yields the result...