以为我会寻找一种不需要WHILE
循环的方法。主要问题是与节点一起返回项目位置,但我在这篇文章的最后一个答案中找到了解决方法:http: //social.msdn.microsoft.com/Forums/nl/sqlxml/thread/46a7a90d-ebd6- 47a9-ac56-c20b72925fb3
因此,替代方法是:
insert into mytable ([Word])
select word from (
Select
words.value('@entry','nvarchar(max)') as word,
words.value('1+count(for $a in . return $a/../*[. << $a])', 'int') as Pos
from
OtherTable ot
cross apply ot.XMLColumn.nodes('words/word') x(words)
) sub where Pos <= @j
基本上内部查询返回每个单词及其位置,这可以由外部查询过滤。
作为参考,我对OtherWords
表格的定义是:
create table OtherTable (XMLColumn xml)
insert OtherTable (XMLColumn)
select '<words><word entry="Wibble"/><word entry="Hello"/><word entry="World"/></words>'