FLOOR
Round down to the nearest integer. This function returns the largest integer value that is less than or equal to the argument.
Syntax
FLOOR(X)Description
Examples
SELECT FLOOR(1.23);
+-------------+
| FLOOR(1.23) |
+-------------+
| 1 |
+-------------+
SELECT FLOOR(-1.23);
+--------------+
| FLOOR(-1.23) |
+--------------+
| -2 |
+--------------+Last updated
Was this helpful?

