Calculates the floor of a number. Returns the nearest round number less than or equal to the double/decimal.
double? FLOOR(double? value) decimal? FLOOR(decimal? value)
FLOOR(28.9)
Returns '28'.
or
FLOOR(213)
Returns '213'.