PostgreSQL除法保留小数

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

select round( cast ( 1 as numeric )/ cast( 4 as numeric),2);
    原文作者:PostgreSQL
    原文地址: https://www.cnblogs.com/esther-qing/p/5908378.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞