SQL Server 2016 - FOR JSON PATH等效于FOR JSON AUTO

时间:2017-05-16 23:29:08

标签: json sql-server-2016

使用SQL Server 2016(在Azure上)我希望辅助t2数据作为数组,以避免主要数据重复。像这样:

enter image description here

但我只能使用FOR JSON AUTO并且无法控制属性名称...

如何使用FOR JSON PATH之类的方式执行此操作,以便控制属性名称?

用于测试的SQL:

create table #t1 (id bigint, name varchar(20))
create table #t2 (id bigint, idBase bigint, name varchar(20))

insert into #t1 values (1,'teste1')
insert into #t1 values (2,'teste2')
insert into #t2 values (1,1,'teste11')
insert into #t2 values (2,1,'teste21')
insert into #t2 values (3,2,'teste32')

select
    t1.id as 'base.id'
    ,t1.name as 'base.name'
    ,t2.id as 'base.secondary.id'
    ,t2.name as 'base.secondary.name'
from
    #t1 as t1
inner join 
    #t2 as t2 on t1.id = t2.idBase
for json auto

谢谢!

1 个答案:

答案 0 :(得分:0)

使用“for json auto”:

select  t1.id as [base.id],
        t1.name as [base.name],
        (
          select  t2.id as [base.secondary.id],
                  t2.name as [base.secondary.name]
            from  #t2 as t2 
            where t2.idBase = t1.id
            for json auto
        ) as [t2]
  from  #t1 as t1
  for json auto

结果:

[{
    "base.id": 1,
    "base.name": "teste1",
    "t2": [{
        "base.secondary.id": 1,
        "base.secondary.name": "teste11"
    },
    {
        "base.secondary.id": 2,
        "base.secondary.name": "teste21"
    }]
},
{
    "base.id": 2,
    "base.name": "teste2",
    "t2": [{
        "base.secondary.id": 3,
        "base.secondary.name": "teste32"
    }]
}]

使用“for json path”:

select  t1.id as [base.id],
        t1.name as [base.name],
        (
          select  t2.id as [id],
                  t2.name as [name]
            from  #t2 as t2 
            where t2.idBase = t1.id
            for json path
        ) as [secondary]
  from  #t1 as t1
  for json path

结果:

[{
    "base": {
        "id": 1,
        "name": "teste1"
    },
    "secondary": [{
        "id": 1,
        "name": "teste11"
    },
    {
        "id": 2,
        "name": "teste21"
    }]
},
{
    "base": {
        "id": 2,
        "name": "teste2"
    },
    "secondary": [{
        "id": 3,
        "name": "teste32"
    }]
}]