作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
除了下面显示的方法之外,还有另一种动态传递节点元素的方法吗?
select XMLTable.XMLCOL.query('//*[local-name()=sql:variable("@node")')
例如,即使我试图给出完全限定的路径,我也不想对节点元素进行硬编码,而是想将它们作为参数单独传递。
节下-
示例:使用 sp_executesql 查询
@ http://msdn.microsoft.com/en-us/library/ms345118(v=sql.90).aspx
它说-
query contains wildcards (*) and node tests using node names and ishard to optimize well. Consequently, it performs much worse than theoriginal query and the query construction approach.
最佳答案
可能是这样的:
declare @qry nvarchar(1000)
set @qry = 'select XMLCOL.query(''//' + @node + ''') from XMLTable'
exec( @qry )
关于sql-server - XQUERY SQL - 如何将单个节点元素作为变量传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7038038/
我是一名优秀的程序员,十分优秀!