Skip to content
Manual Crono SQL

floor

La función floor redondea un número hacia abajo al entero más cercano.

select floor(10.9) resultado;

10

select floor(10.2) resultado;

10

select floor(-10.2) resultado;

-11

Was this page helpful?

We are here to help. If you have any problem or question, open a GitHub issue and we will get back to you as soon as possible.

Create a GitHub issue