对于JSON路径格式

Tim*_*ert 8 t-sql sql-server json for-json

背景:

我有一个nvarchar(max)名为'questions' 的JSON 列,它看起来像是一行中的这个真实例子......

{"211":0,"212":0,"213":0,"214":0,"215":0,"216":0,"217":0,"218":0,"219":0,"220":"1","221":"1","222":"1","223":"1","224":"1","225":"1","226":"1","227":"1","228":"1","229":"1","230":"1","231":"1","232":"1"}
Run Code Online (Sandbox Code Playgroud)

我正在为示例'call'生成此示例JSON代码段...

[
  {
    "call": {
      "id": 200643,
      "yes_answers": [
        {
          "question_id": "220"
        },
        {
          "question_id": "221"
        },
        {
          "question_id": "222"
        },
        {
          "question_id": "223"
        },
        {
          "question_id": "224"
        },
        {
          "question_id": "225"
        },
        {
          "question_id": "226"
        },
        {
          "question_id": "227"
        },
        {
          "question_id": "228"
        },
        {
          "question_id": "229"
        },
        {
          "question_id": "230"
        },
        {
          "question_id": "231"
        },
        {
          "question_id": "232"
        }
      ]
    }
  }
]
Run Code Online (Sandbox Code Playgroud)

..使用此查询...

select c.call_id as [call.id],
    (
        select x.[key]
        from [call].[triage_questions] tq
            cross apply openjson(questions, '$') as x
        where value = 1 and tq.call_id = c.call_id
        for json path
    ) as [call.yes_answers]
from [call].[dimension] c
where call_id = 200643
for json path
Run Code Online (Sandbox Code Playgroud)

我的问题:

我不喜欢格式化"yes_answers"数组的方式.我想要更像这样的东西:

[
  {
    "call": {
      "id": 200643,
      "yes_answers": [
        220,
        221,
        222,
        223,
        224,
        225,
        226,
        227,
        228,
        229,
        230,
        231,
        232
      ]
    }
  }
]
Run Code Online (Sandbox Code Playgroud)

这有效吗?或者我应该以不同的方式进行推广?或者只是离开它?

我将使用SQL将"yes_answers"数组中的每个question_id引用到一个引用表,其中我正在寻找与该问题相关联的真/假标志.如果重要的话,JSON目前不会离开SQL.

编辑:

感谢@ Tomato32,我发现这个其他问题让我足够接近,我想.

我的查询现在看起来像这样......

select c.call_id as [call.id],
    json_query(replace(replace((
        select x.[key] as question_id
        from [call].[triage_questions] tq
            cross apply openjson(questions, '$') as x
        where value = 1 and tq.call_id = c.call_id
        order by x.[key]
        for json path
    ), N'{"question_id":', N''), '"}', '"')) as [call.yes_answers]
from [call].[dimension] c
where call_id = 200643
for json path
Run Code Online (Sandbox Code Playgroud)

我生成的JSON看起来像这样......

[
  {
    "call": {
      "id": 200643,
      "yes_answers": [
        "220",
        "221",
        "222",
        "223",
        "224",
        "225",
        "226",
        "227",
        "228",
        "229",
        "230",
        "231",
        "232"
      ]
    }
  }
]
Run Code Online (Sandbox Code Playgroud)

我无法摆脱"yes_answers"数组中int值周围的引号,但我认为这不重要,我不会浪费任何时间在它上面:)谢谢大家! !

Ali*_*awi 0

我仅更新了您的替换语句以删除“[number]”中的引号,如下所示:-

select c.call_id as [call.id],
    json_query(replace(replace((
        select x.[key] as question_id
        from [call].[triage_questions] tq
            cross apply openjson(questions, '$') as x
        where value = 1 and tq.call_id = c.call_id
        order by x.[key]
        for json path
    ), N'{"question_id":"', N''), '"}', '')) as [call.yes_answers]
from [call].[dimension] c
where call_id = 200643
for json path
Run Code Online (Sandbox Code Playgroud)

在我的测试中,输出如下:-

[{"call":{"id":200643,"yes_answers":[220,221,222,223,224,225,226,227,228,229,230,231,232]}}]
Run Code Online (Sandbox Code Playgroud)