Last updated 1 year ago
Returns the largest integer less than or equal to the specified numeric expression. (FLOOR in Transact-SQL).
FLOOR ( numeric_expression )
Snowflake SQL Documentation
FLOOR( <input_expr> [, <scale_expr> ] )
Code:
SELECT FLOOR (124.87) AS FLOOR;
Result:
FLOOR| -----+ 124|