PostgreSQL如何实现四舍五入?运用这两个函数轻松解决
陈立鑫
优草派
很多小伙伴想知道在PostgreSQL中如何进行四舍五入,那么小编今天通过分享这篇文章来带给大家在postgreSQL中进行四舍五入的实现方法。
PostgreSQL四舍五入函数如下:
1、round(dp or numeric),将四舍五入到最接近的整数;
2、round(v numeric, s int) 四舍五入到s位小数位。
使用示例:
francs=> select round(10.2); round ------- 10 (1 row) francs=> select round(10.9); round ------- 11 (1 row) francs=> select 10.1/3; ?column? -------------------- 3.3666666666666667 (1 row) francs=> select round(10.1/3); round ------- 3 (1 row) francs=> select round(10.1/3,2); round ------- 3.37 (1 row)
以上就是小编给大家带来的在postgreSQL中实现四舍五入的方法了,如果你学会了赶紧去实战中使用一下以便加深记忆吧!
【原创声明】凡注明“来源:优草派”的文章,系本站原创,任何单位或个人未经本站书面授权不得转载、链接、转贴或以其他方式复制发表。否则,本站将依法追究其法律责任。