FLOOR
Description
Returns the largest integer less than or equal to the specified numeric expression. (FLOOR in Transact-SQL).
Sample Source Pattern
Syntax
FLOOR ( numeric_expression )
Examples
Code:
SELECT FLOOR (124.87) AS FLOOR;
Result:
FLOOR|
-----+
124|
Last updated