从 sum 中删除一个 xml 节点,在 XPath 到 SQL Server

Eliminate a xml node from sum, in XPath to SQL Server XML column(从 sum 中删除一个 xml 节点,在 XPath 到 SQL Server XML 列中)
本文介绍了从 sum 中删除一个 xml 节点,在 XPath 到 SQL Server XML 列中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个 XPath 表达式,它对最深的 XML 层次结构中的所有节点求和,而不使用节点名称:

I have this XPath expression, which sum all nodes in the deepest XML hierarchy, without using nodes names:

select  @data.value('sum(//*[not(*)])', 'float')

如何根据名称对一个节点进行例外处理?

How do I make an exception of one node, by its name?

说这是xml:

<c>
  <b1>
    <a>1</a>
    <d>4</d>
    <g>5</g>
 </b1>
 <b1>
   <a>7</a>
   <d>1</d>
   <g>2</g>
 </b1>
</c>

我希望总和包含d"和g",没有a",但a"将作为参数传递,因此需要在表达式中表示为参数.我尝试了以下方法:

I would like the sum to contain "d" and "g", without "a", but "a" will be pass as parameter and so need to be represented as parameter inside the expression. I've tried the following:

declare @except varchar(max) = 'a'


select  @data.value('sum(//*[not(*)])', 'float') - @data.value('sum(//*:local-name()=sql:variable("@except"))', 'float')

但没有成功.

推荐答案

虽然 Marc 的回答是我最会做的,但我有一个小技巧给你,下面

While Marc's answer is what i would do mostly, I have a small hack for you, below

select  @data.value('sum(//*[not(*)])', 'float')- @data.value('sum(//*:a)', 'float')

这篇关于从 sum 中删除一个 xml 节点,在 XPath 到 SQL Server XML 列中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)