Mega Code Archive
Categories
/
PostgreSQL
/
Math Functions
Ceil(1 1), ceil(1 5)
postgres=# select ceil(1.1), ceil(1.5); ceil | ceil ------+------ 2 | 2 (1 row) postgres=#