Return to Snippet

Revision: 71259
at January 31, 2017 06:19 by bbrumm


Initial Code
--FLOOR

SELECT FLOOR(7.4) as "FLOOR" FROM dual;

SELECT FLOOR(4.92) as "FLOOR" FROM dual;

SELECT FLOOR(18) as "FLOOR" FROM dual;

SELECT FLOOR(-9.2) as "FLOOR" FROM dual;

SELECT FLOOR(61825.56251) as "FLOOR" FROM dual;

Initial URL
http://www.databasestar.com/oracle-floor/

Initial Description
A few examples of the Oracle FLOOR function.

Initial Title
Oracle FLOOR Function

Initial Tags
sql, Oracle

Initial Language
SQL