我在 SQL Server 中读入变量的文件中有如下数据:
{
"TypeCode": [
{
"DestinationValue": "Private",
"SourceValue": "1"
},
{
"DestinationValue": "Public",
"SourceValue": "2"
}
],
"TypeDesc": [
{
"DestinationValue": "Hello",
"SourceValue": "1"
},
{
"DestinationValue": "Bye",
"SourceValue": "2"
}
]
}
现在我需要将其转换为如下数据:
Name SourceValue DestValue
--------------------------------------------
TypeCode 1 Hello
TypeCode 2 Bye
值得关注的是 - 这个 JSON 中可能有很多这样的数组,并且代码应该能够自动处理所有这些数组,而无需更改代码。
我们怎样才能做到这一点?