ceiling(dp or numeric) smallest integer not less than argument (alias for ceil) : ceil « Math Functions « PostgreSQL






ceiling(dp or numeric) smallest integer not less than argument (alias for ceil)


postgres=# -- ceiling(dp or numeric) smallest integer not less than argument (alias for ceil)
postgres=#
postgres=# select ceiling(-95.3);
 ceiling
---------
     -95
(1 row)

postgres=#
           
       








Related examples in the same category

1.ceil(dp or numeric) smallest integer not less than argument
2.ceil(x): Returns the smallest whole integer not less than argument (rounds up)
3.ceil(1.1), ceil(1.5)