Calculates a number rounded, will return the nearest round number to a significant set of digits.
double? ROUND(double? value, int digits) decimal? ROUND(decimal? value, int decimals)
ROUND(12.34567,2)
Returns '12.35'.