今天 bbs 论坛有朋友问到 PostgreSQL 四舍五入函数问题,今天整理下,顺序把取整函数给列出,方便查阅。
四舍五入函数
Function | Return Type | Description |
---|---|---|
round(dp or numeric) | (same as input) | round to nearest integer |
round(v numeric, s int) | numeric | round to s decimal places |
1 |
francs=> select round(10.2); |
取整函数
Function | Return Type | Description |
---|---|---|
ceil(dp or numeric) | (same as input) | smallest integer not less than argument |
floor(dp or numeric) | (same as input) | largest integer not greater than argument |
返回大于或等于给出数字的最小整数
1 |
francs=> select ceil(3.36); |
返回小于或等于给出数字的最大整数
1 |
francs=> select floor(3.36); |
备注:如果没记错的话,这几个函数在 oracle 当中是通用的。
参考
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/238054.html