首页 > 代码库 > PostgreSQL除法保留小数

PostgreSQL除法保留小数

select round(1::numeric/4::numeric,3);
结果为0.25

select round( cast ( 1 as numeric )/ cast( 4 as numeric),2);

PostgreSQL除法保留小数