Returns the largest integer less than or equal to the given numeric expression.
FLOOR(numeric_expression)
Returns the same type as numeric_expression.
This example shows positive numeric, negative numeric, and currency values with the FLOOR function.
SELECT FLOOR(123.45), FLOOR(-123.45), FLOOR($123.45)
The result is the integer portion of the calculated value in the same data type as numeric_expression.
--------- --------- -----------
123 -124 123.0000