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

In this article I will explain min operation of aggregate function.
  • 1701

Introduction

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

Syntax

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

Example

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

Output

12
'a'

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.