PostgreSQL除法保留小数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL除法保留小数相关的知识,希望对你有一定的参考价值。
select round(1::numeric/4::numeric,3);
结果为0.25
select round( cast ( 1 as numeric )/ cast( 4 as numeric),2);
以上是关于PostgreSQL除法保留小数的主要内容,如果未能解决你的问题,请参考以下文章