XML数据类型方法“value”必须是字符串文字

时间:2012-06-14 08:49:18

标签: sql xml tsql sqlxml

如何更改我的查询以便不会发生此错误:

  

XML数据类型方法“value”必须是字符串文字

T-SQL代码:

Declare @Count Int = 1 
While(@count <= @j) 
Begin 
insert into mytable 
([Word]) 
Select ([XmlColumn].value(N'word['+Cast(@Count as nvarchar(2))+']/@Entry','nvarchar(max)')) 
    from OtherTable WHERE ID=2

2 个答案:

答案 0 :(得分:14)

对于value方法,不能以这种方式将变量连接为字符串。您需要使用sql:variable("@VariableName")

所以你的例子是这样的:

Declare @Count Int = 1 
While(@count <= @j) 
Begin 
insert into mytable 
([Word]) 

Select ([XmlColumn].value(N'/word[sql:variable("@Count")]/@Entry)[1]','nvarchar(max)'))
    from OtherTable WHERE ID=2

答案 1 :(得分:1)

以为我会寻找一种不需要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>'