September 2000
Intermediate to advanced
418 pages
11h 5m
English
| FLOOR |
FLOOR(n) |
Returns the largest integer value that is less than or equal to the input value.
SQL> SELECT FLOOR(9.9), FLOOR(-9.9)
2 FROM dual;
FLOOR(9.9) FLOOR(-9.9)
---------- -----------
9 -10
As with CEIL, the sign is relevant; -10 is less than -9.9.
Read now
Unlock full access