SQL Server“FOR XML"连接两个表的查询的输出

SQL Server quot;FOR XMLquot; output from queries joining two tables(SQL Server“FOR XML连接两个表的查询的输出)
本文介绍了SQL Server“FOR XML"连接两个表的查询的输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我不熟悉 SQL Server 中的FOR XML"功能.我使用的是 SQL Server 2012.

I'm new to the "FOR XML" feature in SQL Server. I am using SQL Server 2012.

我有两个表格,Word 和 Word_Expansion.

I have two tables, Word and Word_Expansion.

示例数据:

表[字]:

WordOID   Word
-------   ----    
      1   PIPE
      2   WIRE

表 [Word_Expansion]:

table [Word_Expansion]:

WEOID  fk_WordOID  Word_Expansion
-----  ----------  --------------
    1          2             COAX
    2          2    SPEAKER CABLE
    3          1          CONDUIT

现在,我想生成类似于以下内容的 XML:

Now, I would like to produce XML something like:

<expansion>
  <sub>WIRE</sub>
  <sub>SPEAKER CABLE</sub>
</expansion>
<expansion>
  <sub>PIPE</sub>
  <sub>CONDUIT</sub>
</expansion>

我在制作 XML FOR 语句方面进行了各种努力,但我似乎无法理解我需要做什么才能将这两个表混合成正确的 XML 输出.我将进一步深入研究 XML FOR 语法,但如果您有时间了解这一点...

I have come close with various efforts at crafting XML FOR statements, but I just can't seem to grasp what it is that I need to do to get these two tables mashed into the right XML output. I'll be digging further into XML FOR syntax, but if you have a moment and know this well...

有人对我应该尝试什么有任何指示吗?

Does anyone have any pointers as to what I should try?

推荐答案

这应该对你有用:

SQL:

SELECT Word Sub,      
        (      
             SELECT Word_Expansion  AS Sub   
             FROM Word_Expansion WE
             WHERE WE.fk_WordOID = W.WordOID 
             FOR XML PATH(''), type 
        )      
FROM Word W
FOR XML PATH ('Expansion')   

XML 输出:

<Expansion>
  <Sub>Pipe</Sub>
  <Sub>CONDUIT</Sub>
</Expansion>
<Expansion>
  <Sub>Wire</Sub>
  <Sub>COAX</Sub>
  <Sub>SPEAKER CABLE</Sub>
</Expansion>

虽然我不确定您为什么要将 Word.Word 归类为Sub"?这不应该是 Word_Expansion 的父级(应该是 sub?)

Although i'm not sure why you want Word.Word to be classified as "Sub"? Shouldn't this instead be the parent of Word_Expansion (which should be sub?)

我发现这个链接在查看 FOR XML 和嵌套查询时非常有用 嵌套 FOR XML

I found this link quite useful when looking into FOR XML and nested queries Nested FOR XML

这篇关于SQL Server“FOR XML"连接两个表的查询的输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
SQL query to group by day(按天分组的 SQL 查询)
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)