3

如何在 SSRS 中查询 XML 数据源,以便返回两个父子层次结构?例如

<parent>
    <child1>
        <child2>
            <child3>
                <a1>1</a1>
                <b1>2</b1>
            </child3>
            <child4>
                <c1>1</c1>
                <d1>2</d1>
            </child4>
        </child2>
    </child1>
</parent>

如何查询此 XML 以获得 a1,b1,c1,d1 作为结果集?

4

1 回答 1

1

下面的示例应该为您提供您正在寻找的结果:

<Query>
<ElementPath IgnoreNamespaces="True">
parent{}/child1{}/child2{child3 {a1,b1}, child4{c1,d1}}
</ElementPath>
</Query>
于 2015-06-19T12:30:04.687 回答