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 文档: 数学函数