How to use max operation in Aggregate Function Using XPath in Xml

In this article I will explain max operation of aggregate function.
  • 1912

Introduction

The max operation of aggregate function can be used to find the maximum values from the given values, Or we can say that from the given argument this function finds the greatest function and return it.

Syntax

max((arg1,arg2,arg3,arg4.......))

Example

max ((12,21,56,98,78))
max (('a','c','g','r','b'))

Output

98
'r'

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.