0

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 にはそのような配列が多数存在する可能性があり、コードを変更せずにコードでそれらすべてを自動的に処理できる必要があることです。

どうすればこれを達成できますか?

4

1 に答える 1