New versions: Dev (3.15) | Latest (3.14) | 3.13 | 3.12 | 3.11 | 3.10 | 3.9 | 3.8 | Old versions: 3.7 | 3.6 | 3.5 | 3.4 | 3.3
FLOOR
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
The FLOOR()
function rounds a numeric value to its nearest lower integer.
SELECT floor(1.7), floor(-1.7);
create.select( floor(1.7), floor(-1.7)).fetch();
The result being
+-------+-------+ | floor | floor | +-------+-------+ | 1 | -2 | +-------+-------+
Dialect support
This example using jOOQ:
floor(1.7)
Translates to the following dialect specific expressions:
-- ACCESS (cdec(1.7E0) - (1.7E0 < cdec(1.7E0))) -- ASE, AURORA_MYSQL, AURORA_POSTGRES, BIGQUERY, CUBRID, DB2, DERBY, EXASOL, FIREBIRD, HANA, HSQLDB, IGNITE, INFORMIX, INGRES, -- MARIADB, MEMSQL, MYSQL, ORACLE, POSTGRES, REDSHIFT, SNOWFLAKE, SQLDATAWAREHOUSE, SQLSERVER, SYBASE, TERADATA, VERTICA floor(1.7E0) -- COCKROACHDB floor(CAST(1.7E0 AS double precision)) -- H2 floor(CAST(1.7E0 AS double)) -- SQLITE (CAST(1.7E0 AS int8) - (1.7E0 < CAST(1.7E0 AS int8)))
(These are currently generated with jOOQ 3.15, see #10141)
Feedback
Do you have any feedback about this page? We'd love to hear it!