Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 627 Bytes

File metadata and controls

28 lines (18 loc) · 627 Bytes
title url
XPath sum
/refguide7/xpath-sum/

1 Overview

The sum() function returns the sum of its argument.

The function requires an XPath query as argument.

The function must specify a column in the query to aggregate.

The query must specify an attribute that has a numeric type.

2 Examples

This query returns the sum of the total prices of all placed orders:

sum(//Sales.Order/TotalPrice)

This query returns the sum of the total prices of all the orders placed by a customer named "Jansen":

sum(//Sales.Order[Sales.Customer_Order/Sales.Customer/Name = 'Jansen']/TotalPrice)