Skip to content
Manual Crono SQL

ceil

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

select ceil(10.2) resultado;

11

select ceil(10.9) resultado;

11

select ceil(-10.2) resultado;

-10

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