FLOOR
This section contains reference documentation for the FLOOR function.
Rounded down to the nearest integer.
Signature
FLOOR(col1)
Usage Examples
select FLOOR(12.1) AS value
from ignoreMe
value
12
select FLOOR(-12.1) AS value
from ignoreMe
value
-13
Was this helpful?