I have stored some data in the table as JSON string like below.
[
{
"firstName":"John",
"lastName":"Smith",
"age":25,
"Address":{
"streetAddress":"21 2nd Street",
"city":"New York",
"state":"NY",
"postalCode":"10021"
},
"PhoneNumbers":{
"home":"212 555-1234",
"fax":"646 555-4567"
}
},
{
"firstName":"Mike",
"lastName":"Lee",
"age":30,
"Address":{
"streetAddress":"10 Street",
"city":"New York",
"state":"NY",
"postalCode":"10021"
},
"PhoneNumbers":{
"home":"212 555-3265",
"fax":""
}
}
]
To export these data to an excel file I need to make a query to get these details like below
with CROSS APPLY OPENJSON I can get names, and ages, but how can I get the address and contact details as columns?
You need to use
OPENJSON()
and the appropriatepath
s:JSON:
Statement:
Result: