大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关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四舍五入的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。