VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / Mathematical Functions / FLOOR
In This Topic
FLOOR
In This Topic
Returns the largest integer less than or equal to the number input.



Example

SELECT FLOOR(3.999);

RETURNS: 3

SELECT FLOOR(-3.999);

RETURNS: -4
See Also