sqlserver保留兩位小數

2021-06-14 05:11:17 字數 968 閱讀 7290

sql server中除法,會遇到除數為0的情況,且保留兩位小數,寫法如下: 

select case when num=0 then 0 else convert(decimal(18,2),210.343/num) end    as 結果 from tabnumber

select 

[carrier] as '承運人分組',

count(*) as '張數',

'0' as '出票效率',

sum(cast(sumprice as int)) as '票面價',

sum(cast([taxprice] as int)) as '基建費',

sum(cast([oilprice] as int)) as '燃油費',

sum(cast(sumprice as int) - cast([flightback] as int)) as '實收費'

from [order_flightdetail] group by [carrier] order by count(*) desc

select 

[carrier] as '承運人分組',

count(*) as '張數',

'0' as '出票效率',

sum(convert(decimal(18,2),sumprice)) as '票面價',

sum(convert(decimal(18,2),[taxprice])) as '基建費',

sum(convert(decimal(18,2),[oilprice])) as '燃油費',

sum(convert(decimal(18,2),sumprice) - convert(decimal(18,2),[flightback])) as '實收費'

from [order_flightdetail] where [carrier] <>'' group by [carrier] order by count(*) desc

保留兩位小數

1.只要求保留n位不四捨5入 float f 0.55555f int i int f 100 f float i 1.0 100 2.保留n位,四捨五入 decimal d decimal.round decimal.parse 0.55555 2 3.保留n位四捨五入 math.round 0....

保留兩位小數

num 10.4567 第一種 利用round 對浮點數進行四捨五入 echo round num,2 第二種 利用sprintf格式化字串 format num sprintf 2f num echo format num 第三種 利用千位分組來格式化數字的函式number format echo...

保留兩位小數

js保留兩位小數例子 四捨五入使用函式 tofixed php保留兩位小數例子 四捨五入 1.number format 通過千位分組來格式化數字。該函式支援乙個 兩個或四個引數 不是三個 number 1234.5678 nombre format francais number format n...