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