2

以下のようなJSON文字列としてテーブルにいくつかのデータを保存しました。

[
   {
      "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":""
      }
   }
]

これらのデータを Excel ファイルにエクスポートするには、以下のような詳細を取得するクエリを作成する必要があります

ここに画像の説明を入力

CROSS APPLY OPENJSON を使用すると、名前と年齢を取得できますが、住所と連絡先の詳細を列として取得するにはどうすればよいですか?

4

1 に答える 1