方法一:使用to_char的fm格式
to_char(round(data.amount,2),'fm9999999999999999.00') as amount
不足之處是,如果數值是0的話,會顯示為.00而不是0.00。
另一需要注意的是,格式中小數點左邊9的個數要夠多,否則查詢的數字會顯示為n個符號「#」。
解決方式如下:
select decode(salary,0,'0.00',(to_char(round(salary,2),'fm99999999999999.00'))) from can_do;
方法二:使用case when then else end進行各種情況的判斷處理
case
when instr(to_char(data.amount), '.') < 1 then
data.amount || '.00'
when instr(to_char(data.amount), '.') + 1 = length(data.amount) then
data.amount || '0'
else
to_char(round(data.amount, 2))
end as amount_format
方法三:可以使用oracle自帶的引數設定
column amount format l9999999999.99
此方法的不足是,format中的小數點左面的9的個數要已知,否則會出現超過的數字顯示為########的情況。
另外乙個問題是,使用column時,設定生效是session級還是system級,需要注意。
也許某張表的數值列不總是要求所有的地方顯示時,都是小數點後兩位的格式,此時只能使用session級,但是有個資料庫連線會話超時的問題,如果不是使用到system級,不建議使用該方法。
方法四:使用to_char+trim的方式
select trim(to_char(1234,'99999999999999.99')) from dual;
或者 select ltrim(trim(to_char(1234.525,'00000000000000.00')),'0') from dual;
此處使用了14個9或者14個0的格式,建議使用14個9的方式,方便些。方法四的不足之處是:
如果數值是0的話,轉化之後為.00而不是0.00,補救措施是,decode一下。
另一需要注意的是,格式中小數點左邊9或者0的個數要夠多,負責查詢的數字會顯示為n個符號「#」。
如下:
select decode(salary,0,'0.00',trim(to_char(salary,'99999999999999.99'))) from can_do;
或者 select decode(salary,0,'0.00',ltrim(trim(to_char(salary,'00000000000000.00')),'0')) from can_do;
結論:建議使用方法四中的trim+to_char的方式或者方法一的補救之後的方式,而且最好使用小數點左邊n個9的方式,不要使用0的方式,否則,要多一步trim處理。
即:select decode(salary,0,'0.00',trim(to_char(salary,'99999999999999.99'))) from can_do;
或者 select decode(salary,0,'0.00',(to_char(round(salary,2),'fm99999999999999.00'))) from can_do;
FloatToStr問題 保留小數字
如何使乙個字串 23.89023482 在使用floattostr變為23.90?有什麼規則嗎?是不是小數後第2位四捨五入?formatfloat 0.0 f 0 用下面這個函式要好的多 floattostrf 23.89023482 ffnumber,12,2 試試吧,用了很久了,不知道格式對不對...
BigDecimal如何保留小數字
bigdecimal怎麼保留字段呢,bigdecimal big new bigdecimal 2.3513 設定bigdecimal初始值big.setscale 1 保留1位小數,預設用四捨五入。big.setscale 1,bigdecimal.round down 直接刪除多餘的小數,2.3...
numpy保留小數字數
import numpy as np n 2data numpy.around a,n 保留2位小數,n為3,則保留3位小數。預設保留整數,計算方法是四捨五入。這裡是一些例子 import numpy as np np.around 0.37,1.64 array 0.2.np.around 0.3...