Returns the floor of (largest integer not greater than) a
number.
Examples
The following statement returns the value 123.00:
SELECT FLOOR ( 123 ) FROM iq_dummy
The following statement returns the value 123:
SELECT FLOOR ( 123.45 ) FROM iq_dummy
The following statement returns the value -124.00.
SELECT FLOOR ( -123.45 ) FROM iq_dummy