postgreSQL保留小数

Posted 树上的疯子^

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgreSQL保留小数相关的知识,希望对你有一定的参考价值。

--1 例子
postgres=# select 1/4;
 ?column? 
----------
        0
(1 row)
        在PG里如果想做除法并想保留小数,用上面的方法却行不通,因为"/" 运算结果为取整,并且会截掉小数部分。
 


--2 类型转换
postgres=# select round(1::numeric/4::numeric,2);
 round 
-------
  0.25
(1 row)


  备注:类型转换后,就能保留小数部分了。




--3 也可以通过 cast 函数进行转换
postgres=# select round( cast ( 1 as numeric )/ cast( 4 as numeric),2);
 round 
-------
  0.25
(1 row)




--4 关于 cast 函数的用法
postgres=# SELECT substr(CAST (1234 AS text), 3,1);
 substr 
--------
 3
(1 row)--1 例子
postgres=# select 1/4;
 ?column? 
----------
        0
(1 row)
        在PG里如果想做除法并想保留小数,用上面的方法却行不通,因为"/" 运算结果为取整,并且会截掉小数部分。
 


--2 类型转换
postgres=# select round(1::numeric/4::numeric,2);
 round 
-------
  0.25
(1 row)


  备注:类型转换后,就能保留小数部分了。




--3 也可以通过 cast 函数进行转换
postgres=# select round( cast ( 1 as numeric )/ cast( 4 as numeric),2);
 round 
-------
  0.25
(1 row)




--4 关于 cast 函数的用法
postgres=# SELECT substr(CAST (1234 AS text), 3,1);
 substr 
--------
 3
(1 row)

以上是关于postgreSQL保留小数的主要内容,如果未能解决你的问题,请参考以下文章

PostgreSQL除法保留小数

四、PostgreSQL常用数据类型(精简)

1.4726保留整数 保留一位小数 保留两位小数 保留三位小数各是多少

%f输出的小数,小数点后保留多少位?

excel用函数保留小数位的教程

js保留小数位