ceil()
是一个系统函数,返回大于或等于提供的数值的最接近的整数。
ceil()
在 PostgreSQL 6.5 中添加。
用法
ceil (numeric
) →numeric
ceil (double precision
) →double precision
ceiling()
作为 ceil()
的别名提供。
更改历史记录
- PostgreSQL 6.5
- 添加 (提交 0e9d75c6)
示例
ceil()
的基本用法示例
postgres=# SELECT ceil(3); ceil ------ 3 (1 row) postgres=# SELECT ceil(3.14); ceil ------ 4 (1 row) postgres=# SELECT ceil(-3.14); ceil ------ -3 (1 row)
参考
- PostgreSQL 文档: 数学函数