Returns the value of x rounded to the nearest even number at a digit specified by n.
ROUNDTOEVEN(x,n)
ROUNDTOEVEN rounds numbers ending in 0.5 to the nearest even digit. For example, both 99.5 and 100.5 are rounded to 100, and -99.5 and -100.5 are rounded to -100.
For numbers not ending in 0.5, ROUNDTOEVEN is equivalent to ROUNDAWAYFROMZERO. For example, 100.6 is rounded to 101 and 100.4 is rounded to 100.
ROUNDTOEVEN is supported for FLOAT DFP only.