一佳一

记录像1+1一样简洁的代码

导航

PostgreSQL 除法保留小数点

Posted on 2022-11-10 16:18  一佳一  阅读(331)  评论(0编辑  收藏  举报
bill=# select 1/2::float8;
 ?column?
----------
 0.5
(1 row)
bill=# select 1/2::numeric;
 ?column?
------------------------
 0.50000000000000000000
(1 row)
bill=# select 1::money/2;
 ?column?
----------
 $0.50
(1 row)