在 SQLXML 中扁平化 XML

发布于 2024-09-08 04:53:34 字数 1181 浏览 6 评论 0原文

我在 T-SQL 中有这个 XML:

<Elements>
    <Element>
        <Index>1</Index>
        <Type>A</Type>
        <Code>AB</Code>
        <Time>1900-01-01T10:21:00</Time>
    </Element>
    <Element>
        <Index>2</Index>
        <Type>M</Type>
        <Code>AL</Code>
        <Time>1900-01-01T10:22:00</Time>
    </Element>
</Elements>

我想将其作为表检索:

Index    FieldName    FieldValue
-------- ------------ ----------
1        Index        1
1        Type         A
1        Code         AB
1        Time         1900-01-01T10:21:00
2        Index        2
2        Type         M
2        Code         AL
2        Time         1900-01-01T10:22:00

当然,我在这里寻找的是将 Element 节点转换为行,但我无法获得的不仅仅是字段值或者一次索引...

select
--  r.value('.[1]', 'nvarchar(10)') Value,
--  r.value('fn:local-name(.)', 'nvarchar(50)') FieldName
    r.value('Index[1]', 'nvarchar(10)') f,
    r.value('./node()[fn:local-name(.)]', 'nvarchar(10)') v
from
    @content.nodes('/Elements/*') as records(r)

I have this XML in T-SQL:

<Elements>
    <Element>
        <Index>1</Index>
        <Type>A</Type>
        <Code>AB</Code>
        <Time>1900-01-01T10:21:00</Time>
    </Element>
    <Element>
        <Index>2</Index>
        <Type>M</Type>
        <Code>AL</Code>
        <Time>1900-01-01T10:22:00</Time>
    </Element>
</Elements>

And I want to retrieve it as a table:

Index    FieldName    FieldValue
-------- ------------ ----------
1        Index        1
1        Type         A
1        Code         AB
1        Time         1900-01-01T10:21:00
2        Index        2
2        Type         M
2        Code         AL
2        Time         1900-01-01T10:22:00

Of course, what I'm looking for here is to pivot the Element nodes into rows, but I can't get more than just the field value OR the index at a time...

select
--  r.value('.[1]', 'nvarchar(10)') Value,
--  r.value('fn:local-name(.)', 'nvarchar(50)') FieldName
    r.value('Index[1]', 'nvarchar(10)') f,
    r.value('./node()[fn:local-name(.)]', 'nvarchar(10)') v
from
    @content.nodes('/Elements/*') as records(r)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滴情不沾 2024-09-15 04:53:41

您可以尝试这样的操作:

SELECT
    El.Elem.value('(Index)[1]', 'int'),
    SubEl.SubElem.value('local-name(.)', 'varchar(100)') AS 'Field Name',
    SubEl.SubElem.value('.', 'varchar(100)') AS 'Field Value'
FROM
    @content.nodes('/Elements/Element') AS El(elem)
CROSS APPLY
    El.Elem.nodes('*') AS SubEl(SubElem)

这似乎在我的测试用例中产生了您想要的输出。

您基本上需要在第一步中选择所有 /Elements/Element 节点,获取它们的索引值,然后在第二步中选择所有子节点 (/*)对于任何给定的 节点。

You could try something like this:

SELECT
    El.Elem.value('(Index)[1]', 'int'),
    SubEl.SubElem.value('local-name(.)', 'varchar(100)') AS 'Field Name',
    SubEl.SubElem.value('.', 'varchar(100)') AS 'Field Value'
FROM
    @content.nodes('/Elements/Element') AS El(elem)
CROSS APPLY
    El.Elem.nodes('*') AS SubEl(SubElem)

That seems to produce your desired output in my test case.

You basically need to select all /Elements/Element nodes in a first step, get their index value, and then in a second step, select all child nodes (/*)for any given <Element> node.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文